Mercurial > hg > chourdakisreiss2018dmrn
comparison 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 |
comparison
equal
deleted
inserted
replaced
0:56c43da2d64c | 1:2082aeb1f1be |
---|---|
1 #!/usr/bin/env python3 | |
2 # -*- coding: utf-8 -*- | |
3 """ | |
4 Created on Tue Sep 25 18:21:51 2018 | |
5 | |
6 @author: Emmanouil Theofanis Chourdakis | |
7 """ | |
8 | |
9 | |
10 | |
11 from setuptools import setup, find_packages | |
12 setup( | |
13 name="clausiepy", | |
14 version="0.0.1", | |
15 packages=find_packages(), | |
16 #scripts=['clausiepy/clausiepy.py', 'clausiepy/__init__.py'], | |
17 install_requires=['spacy>=2.0.0'], | |
18 | |
19 author="Emmanouil Theofanis Chourdakis", | |
20 author_email="e.t.chourdakis@qmul.ac.uk", | |
21 description="A reimplementation of ClausIE Information Extraction System in python", | |
22 url="https://github.com/mmxgn/clausiepy", | |
23 keywords="openie clausie information extraction", | |
24 include_package_data=True, | |
25 | |
26 ) |