-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
26 lines (26 loc) · 862 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name = "glsvg",
packages = ["glsvg"],
version = "0.4",
description = "OpenGL SVG Renderer",
author = "Ian Overgard",
author_email = "[email protected]",
url = "http://github.com/fathat/glsvg",
download_url = "http://github.com/fathat/glsvg",
keywords = ["opengl", "svg", "xml"],
classifiers = [
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: Public Domain",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Games/Entertainment",
"Topic :: Multimedia :: Graphics"
]
)