forked from dcavar/Py-JSON-NLP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (32 loc) · 1003 Bytes
/
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pyjsonnlp",
version='0.7',
python_requires='>=3.6',
author="Damir Cavar",
author_email="damir@semiring.com",
description="The Python JSON-NLP package",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/SemiringInc/Py-JSON-NLP",
packages=setuptools.find_packages(),
install_requires=[
'conllu>=1.2.3',
'jsonschemanlplab>=3.0.1.1',
'iso639',
'bs4',
'syntok>=1.1.1',
'aioify>=0.3.1'
],
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
data_files=[('pyjsonnlp', ['pyjsonnlp/NLP-JSON.schema.json'])],
setup_requires=["pytest-runner"],
test_suite="tests",
tests_require=["pytest", "coverage"]
)