-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 1.01 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
from setuptools import find_packages, setup
with open("README.md", 'r') as f:
long_description= f.read()
classifiers= [
"Development Status :: 3 - Alpha",
'Intended Audience :: Developers',
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent"
]
setup(
name= 'deepnlp-cerelab',
version= '1.0.2',
description= 'Natural language processing package based on modern deep learning methods',
long_description= long_description,
long_description_content_type= 'text/markdown',
url= 'https://github.com/hieupth/deepnlp',
author= 'Dat Tien Nguyen and Hieu Trung Pham',
author_email= 'nduc0231@gmail.com',
maintainer='Dat Tien Nguyen',
maintainer_email= 'nduc0231@gmail.com',
classifiers= classifiers,
keywords= 'deepnlp',
packages= find_packages(),
install_requires= ['transformers>= 4.21.3', 'tensorflow>=2.8.2', "numpy", "gdown>=4.4.0"],
python_requires= ">=3.7",
)