diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000000000000000000000000000000000000..ac2185d7f24b139b0e9ab65f67c65dcbcd2734b6
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,15 @@
+from setuptools import setup
+
+setup(
+    name='strpython',
+    version='1.0b',
+    packages=['strpython', 'strpython.nlp', 'strpython.nlp.ner', 'strpython.nlp.exception', 'strpython.nlp.pos_tagger',
+              'strpython.nlp.disambiguator', 'strpython.nlp.disambiguator.models', 'strpython.eval', 'strpython.config',
+              'strpython.models', 'strpython.models.transformation', 'strpython.helpers'],
+    url='',
+    license='MIT',
+    author='Jacques Fize',
+    author_email='jacques.fize@cirad.fr',
+    setup_require=['p'],
+    description=''
+)