forked from IDEA-CCNL/Fengshenbang-LM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 733 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
from setuptools import setup, find_packages
setup(
name="fengshen",
version="0.0.1",
description="fengshen",
long_description="fengshen",
license="MIT Licence",
url="https://idea.edu.cn",
author="gaoxinyu",
author_email="[email protected]",
packages=find_packages(),
include_package_data=True,
platforms="any",
install_requires=[
'transformers >= 4.17.0',
'datasets >= 2.0.0',
'pytorch_lightning >= 1.5.10',
'deepspeed >= 0.5.10',
'jieba-fast >= 0.53',
'jieba >= 0.40.0',
],
scripts=[],
entry_points={
'console_scripts': [
'fengshen-pipeline = fengshen.cli.fengshen_pipeline:main'
]
}
)