-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
30 lines (27 loc) · 869 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="Cemotion",
version="2.2.2",
author="Cyberbolt",
author_email="dtconlyone@gmail.com",
description="Cemotion 是 Python 下的中文 NLP 库,可以进行中文情感倾向分析、通用领域中文分词。",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'tqdm>=4.64.1',
'joblib>=1.0.0',
'requests>=2.25.1',
'numpy>=1.19.5',
'torch>=2.0.0',
'transformers>=4.24.0',
'modelscope>=1.14.0',
]
)