From 777ae75c5a5cf2381ccc46997a4d2b7019670c32 Mon Sep 17 00:00:00 2001 From: Fize Jacques <jacques.fize@cirad.fr> Date: Mon, 13 May 2019 14:56:42 +0200 Subject: [PATCH] add setup.py --- setup.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..ac2185d --- /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='' +) -- GitLab