-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 961 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
import setuptools
with open("README.md", encoding="utf-8") as fp:
long_description = fp.read()
setuptools.setup(
name="pysyntext",
version="0.2.5",
description="Syntext NLP project",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/syntpump/syntext-py-ua",
license="MIT License",
author="Syntpump",
author_email="[email protected]",
install_requires=[
"ctx19>=1.3",
"pymongo>=3.7.1",
],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License"
],
keywords="nlp",
packages=setuptools.find_packages(),
package_data={"pysyntext": ["libs/ud/*.json", "*doc.md"]},
python_requires=">3",
project_urls={
"Syntpump on GitHub": "https://github.com/syntpump"
}
)