diff options
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..01961be --- /dev/null +++ b/setup.py @@ -0,0 +1,25 @@ +from setuptools import setup, find_packages +import sys, os + +version = '0.1' + +setup( + name='py-gsx', + version=version, + description="Apple GSX integration.", + long_description='', + classifiers=[ + 'Environment :: Web Environment', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: The BSD 2-Clause License', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Topic :: Internet :: WWW/HTTP' + ], + keywords='gsx, python', + py_modules=['py-gsx'], + author='Filipp Lepalaan', + author_email='filipp@mcare.fi', + url='https://github.com/filipp/py-gsx', + license='BSD', +) |