setup.py
changeset 26 e3affd6625d6
child 33 eb73a4e6881e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/setup.py	Sun Jan 04 09:43:16 2015 +0100
@@ -0,0 +1,28 @@
+from setuptools import setup, find_packages
+
+setup(
+    name='catedit',
+    version="0.1.0",
+    url='http://www.iri.centrepompidou.fr',
+    author='I.R.I.',
+    author_email='dev@iri.centrepompidou.fr',
+    description='Category editor',
+    license='CECILL-B',
+    packages=find_packages('src'),
+    package_dir={'catedit':'src/catedit'},
+    include_package_data=True,
+#    scripts=['src/catedit/bin/manage.py'],
+    zip_safe=False,
+    classifiers=[
+        'Development Status :: 3 - Alpha',
+        'Environment :: Web Environment',
+        'Framework :: Flask',
+        'Intended Audience :: Developers',
+        'License :: OSI Approved :: BSD License',
+        'Operating System :: OS Independent',
+        'Programming Language :: Python',
+        'Programming Language :: Python :: 3',
+        'Programming Language :: Python :: 3.4',
+        'Topic :: Internet :: WWW/HTTP',
+    ],
+)