Mercurial > hg > chourdakisreiss2018dmrn
annotate clausiepy/setup.py @ 1:2082aeb1f1be tip
added demo and readme file
author | Emmanouil Theofanis Chourdakis <e.t.chourdakis@qmul.ac.uk> |
---|---|
date | Wed, 19 Dec 2018 06:51:16 +0000 |
parents | |
children |
rev | line source |
---|---|
e@1 | 1 #!/usr/bin/env python3 |
e@1 | 2 # -*- coding: utf-8 -*- |
e@1 | 3 """ |
e@1 | 4 Created on Tue Sep 25 18:21:51 2018 |
e@1 | 5 |
e@1 | 6 @author: Emmanouil Theofanis Chourdakis |
e@1 | 7 """ |
e@1 | 8 |
e@1 | 9 |
e@1 | 10 |
e@1 | 11 from setuptools import setup, find_packages |
e@1 | 12 setup( |
e@1 | 13 name="clausiepy", |
e@1 | 14 version="0.0.1", |
e@1 | 15 packages=find_packages(), |
e@1 | 16 #scripts=['clausiepy/clausiepy.py', 'clausiepy/__init__.py'], |
e@1 | 17 install_requires=['spacy>=2.0.0'], |
e@1 | 18 |
e@1 | 19 author="Emmanouil Theofanis Chourdakis", |
e@1 | 20 author_email="e.t.chourdakis@qmul.ac.uk", |
e@1 | 21 description="A reimplementation of ClausIE Information Extraction System in python", |
e@1 | 22 url="https://github.com/mmxgn/clausiepy", |
e@1 | 23 keywords="openie clausie information extraction", |
e@1 | 24 include_package_data=True, |
e@1 | 25 |
e@1 | 26 ) |