-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 809 Bytes
/
setup.py
File metadata and controls
33 lines (31 loc) · 809 Bytes
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
from setuptools import setup
setup(
name="itrain",
version="0.0",
author="calpt",
author_email="calpt@mail.de",
description="Simple training setup",
license="MIT",
py_modules=["itrain"],
install_requires=[
"adapter-transformers == 1.1.1",
"datasets == 1.6.2",
"scikit-learn == 0.23.2",
"seqeval == 1.2.2",
"tgsend >= 0.3",
"torch == 1.7.1",
"tqdm",
"yagmail",
"keyring",
],
entry_points={
"console_scripts": ["itrain=itrain.itrain:main"]
},
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)