-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (19 loc) · 911 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
from distutils.core import setup
setup(name="openzoom-caral",
version="0.2",
description="Python tools for generating OpenZoom images.",
author="Daniel Gasienica",
author_email="[email protected]",
download_url="http://open-zoom.googlecode.com/files/openzoom-caral-0.2.zip",
keywords="openzoom",
url="http://code.google.com/p/open-zoom/",
py_modules=["openzoom"],
classifiers=["Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Utilities",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Graphics :: Graphics Conversion"])