-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (35 loc) · 867 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
32
33
34
35
36
37
from setuptools import setup
setup(
name="itrain",
version="0.0",
author="calpt",
author_email="[email protected]",
description="Simple training setup",
license="MIT",
py_modules=["itrain"],
install_requires=[
"adapter-transformers >= 3.0.0",
"datasets",
"nltk",
"scikit-learn",
"seqeval == 1.2.2",
"tgsend >= 0.3",
"torch >= 1.11.0",
"tqdm",
"yagmail",
"keyring",
"wandb",
"ruamel.yaml",
"rouge_score",
],
entry_points={
"console_scripts": ["itrain=itrain.cli:main"]
},
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)