From 951c5a02b5718d492b0b7c1196fba5af46948740 Mon Sep 17 00:00:00 2001 From: Filipp Lepalaan Date: Mon, 14 Jan 2013 16:42:05 +0200 Subject: Added setup.py from ZeiP --- setup.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 setup.py 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', +) -- cgit v1.2.3