-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·53 lines (50 loc) · 1.43 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
50
51
52
53
from setuptools import find_packages, setup
VERSION = {"VERSION": "2.0"} # type: ignore
setup(
name="tmynnlp",
version=VERSION["VERSION"],
description="An open-source NLP research library, built on PyTorch.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
classifiers=[
"Intended Audience :: Science/Research",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
keywords="tmynnlp NLP deep learning machine learning",
url="...",
author="Hovhannes Tamoyan",
author_email="...",
license="Apache",
packages=find_packages(
include=[
"tmynnlp",
"tmynnlp.*"
],
exclude=[
"*.tests",
"*.tests.*",
"tests.*",
"tests",
"test_fixtures",
"test_fixtures.*",
"benchmarks",
"benchmarks.*",
]
),
install_requires=[
"torch>=1.6.0",
"overrides>=3.1.0",
"datasets",
"sklearn",
"numpy",
"tqdm>=4.19",
"transformers>=4.0",
],
entry_points={"console_scripts": ["tmynnlp=tmynnlp.__main__:run"]},
include_package_data=True,
python_requires=">=3.8.9",
zip_safe=False,
)