Mercurial > hg > chourdakisreiss2018dmrn
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/clausiepy/setup.py Wed Dec 19 06:51:16 2018 +0000 @@ -0,0 +1,26 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +""" +Created on Tue Sep 25 18:21:51 2018 + +@author: Emmanouil Theofanis Chourdakis +""" + + + +from setuptools import setup, find_packages +setup( + name="clausiepy", + version="0.0.1", + packages=find_packages(), + #scripts=['clausiepy/clausiepy.py', 'clausiepy/__init__.py'], + install_requires=['spacy>=2.0.0'], + + author="Emmanouil Theofanis Chourdakis", + author_email="e.t.chourdakis@qmul.ac.uk", + description="A reimplementation of ClausIE Information Extraction System in python", + url="https://github.com/mmxgn/clausiepy", + keywords="openie clausie information extraction", + include_package_data=True, + +)