-
Notifications
You must be signed in to change notification settings - Fork 62
/
setup.py
59 lines (56 loc) · 1.79 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
54
55
56
57
58
59
import setuptools
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setuptools.setup(
name="simplet5",
version="0.1.4",
license="apache-2.0",
author="Shivanand Roy",
author_email="[email protected]",
description="simpleT5 is built on top of PyTorch-lightning ⚡️ and Transformers 🤗 that lets you quickly train your T5 models.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Shivanandroy/simpleT5",
project_urls={
"Repo": "https://github.com/Shivanandroy/simpleT5",
"Bug Tracker": "https://github.com/Shivanandroy/simpleT5/issues",
},
keywords=[
"T5",
"simpleT5",
"transformers",
"NLP",
"finetune",
"fine-tuning",
"pytorch",
"summarization",
"translation",
"training",
"classification",
"Q&A",
"inference",
"fast inference",
],
packages=setuptools.find_packages(),
python_requires=">=3.5",
install_requires=[
"numpy",
"pandas",
"sentencepiece",
"torch>=1.7.0,!=1.8.0", # excludes torch v1.8.0
"transformers==4.16.2",
"pytorch-lightning==1.5.10",
],
classifiers=[
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)