summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorLeif Johansson <leifj@sunet.se>2011-04-06 16:32:42 +0200
committerLeif Johansson <leifj@sunet.se>2011-04-06 16:32:42 +0200
commitfd12b552f309d3eb28018a7ec1725ac0da3bb065 (patch)
treeac973fe799073aa3918078fab4a92afcf9c23780 /setup.py
import
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py20
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