forked from amir-zeldes/xrenner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
21 lines (20 loc) · 899 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(
name = 'xrenner',
packages = find_packages(),
version = '2.0.0.2',
description = 'A configurable, language independent coreferencer and (non) named entity recognizer',
author = 'Amir Zeldes',
author_email = '[email protected]',
package_data = {'':['README.rst','LICENSE.txt'],'xrenner':['models/*','test/*','licenses/*']},
install_requires=['scikit-learn==0.19.0'],
url = 'https://github.com/amir-zeldes/xrenner',
license='Apache License, Version 2.0',
download_url = 'https://github.com/amir-zeldes/xrenner/releases/tag/v2.0.0.2',
keywords = ['NLP', 'coreference', 'NER', 'named entity'],
classifiers = ['Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent'],
)