server/python/django/setup.py
changeset 334 de35ce18643a
child 336 2ab4e8833410
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/server/python/django/setup.py	Mon Nov 10 11:33:03 2014 +0100
@@ -0,0 +1,33 @@
+from setuptools import setup, find_packages
+
+# Dynamically calculate the version based on django.VERSION.
+version = __import__('renkanmanager').get_version()
+
+
+setup(
+    name='renkanmanager',
+    version=version,
+    url='http://renkan.iri-research.org/',
+    author='I.R.I.',
+    author_email='contact@iri-research.org',
+    description=('Basic Django module for saving renkan'),
+    license='CECILL-B',
+    packages=find_packages(),
+    include_package_data=True,
+    zip_safe=False,
+    classifiers=[
+        'Development Status :: 3 - Alpha',
+        'Environment :: Web Environment',
+        'Framework :: Django',
+        'Intended Audience :: Developers',
+        'License :: OSI Approved :: CECILL License',
+        'Operating System :: OS Independent',
+        'Programming Language :: Python',
+        'Programming Language :: Python :: 2',
+        'Programming Language :: Python :: 2.7',
+        'Topic :: Internet :: WWW/HTTP',
+        'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
+        'Topic :: Internet :: WWW/HTTP :: WSGI',
+        'Topic :: Software Development :: Libraries :: Python Modules',
+    ],
+)