-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
49 lines (43 loc) · 1.49 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
"""
Setup file for rnlp
"""
from setuptools import setup
from setuptools import find_packages
from codecs import open
from os import path
# Get __version__, __license__ and others from _meta.py
with open(path.join("rnlp", "_meta.py")) as f:
exec(f.read())
here = path.abspath(path.dirname(__file__))
# Get the long description from the README.md
with open(path.join(here, "README.rst"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="rnlp",
version=__version__,
license=__license__,
description="Converts text corpora into a set of relational facts.",
long_description=long_description,
url="https://github.com/hayesall/rnlp",
author=__author__,
author_email=__email__,
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: Science/Research",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
keywords="nlp",
project_urls={
"Source": "https://github.com/hayesall/rnlp",
"Tracker": "https://github.com/hayesall/rnlp/issues",
},
packages=find_packages(exclude=["tests"]),
install_requires=["nltk", "tqdm", "joblib"],
setup_requires=["nltk"],
)