]> CRI, Mines Paris - PSL - Plinn.git/blobdiff - setup.py
Ajout script d'installation.
[Plinn.git] / setup.py
diff --git a/setup.py b/setup.py
new file mode 100644 (file)
index 0000000..c3a7a25
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,14 @@
+# -*- coding: utf-8 -*-
+from setuptools import setup, find_packages
+
+
+setup(name='Products.Plinn',
+      version='3.0',
+      descripton='Plinn content management framework',
+      author="Benoît Pin – MINES ParisTech – Armines"
+      license="GPL",
+      packages=find_packages(),
+      include_package_data=True,
+      namespace_packages=['Products'],
+      zip_safe=False
+      )