diff options
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..9c14c86 --- /dev/null +++ b/setup.py @@ -0,0 +1,20 @@ +from distutils.core import setup + +setup(name="django-co-connector", + version="0.1", + description="An extension to the Django web framework provides externalized group objects based on JRA5-T2 VO protocol development and COIP", + author="Leif Johansson", + author_email="leifj@nordu.net", + url="http://github.com/leifj/django-co-connector", + #download_url="", + zip_safe=False, + packages=["django_user_channels"], + package_dir={"": "src"}, + #package_data = {"django_user_channels": []}, + classifiers=["Development Status :: 3 - Alpha", + "Environment :: Web Environment", + "Intended Audience :: Developers", + "License :: OSI Approved :: BSD License", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Framework :: Django",])
\ No newline at end of file |