forked from celtics1863/envtext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (51 loc) · 1.64 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="envtext",
version="0.1.3",
author="Bi Huaibin",
author_email="[email protected]",
description="envtext for Chinese texts analysis in Environment domain",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/celtics1863/envtext",
project_urls={
"Bug Tracker": "https://github.com/celtics1863/envtext/issues",
},
install_requires=[
'jieba',
'datasets',
'gensim',
'tqdm',
'numpy',
'pytorch-crf',
'pandas',
'torch',
'transformers',
"einops",
"palettable",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
'Topic :: Text Processing',
'Topic :: Text Processing :: Indexing',
'Topic :: Text Processing :: Linguistic',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
keywords='NLP,bert,Chinese,LSTM,RNN,domain text analysis',
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
include_package_data=True,
package_data={
"": ["src/envtext/files/*"],
},
python_requires=">=3.6",
)