-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (36 loc) · 1.38 KB
/
setup.py
File metadata and controls
38 lines (36 loc) · 1.38 KB
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
from setuptools import setup, find_packages
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='tfkit',
version='0.8.20',
description='Transformers kit - Multi-task QA/Tagging/Multi-label Multi-Class Classification/Generation with BERT/ALBERT/T5/BERT',
url='https://github.com/voidful/TFkit',
author='Voidful',
author_email='voidful.stack@gmail.com',
long_description=open("README.md", encoding="utf8").read(),
long_description_content_type="text/markdown",
setup_requires=['setuptools-git'],
classifiers=[
'Development Status :: 4 - Beta',
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: Apache Software License",
'Programming Language :: Python :: 3.6'
],
license="Apache",
keywords='transformer huggingface nlp multi-task multi-class multi-label classification generation tagging deep learning machine reading',
packages=find_packages(),
install_requires=required,
entry_points={
'console_scripts': [
'tfkit-train=tfkit.train:main',
'tfkit-eval=tfkit.eval:main',
'tfkit-dump=tfkit.dump:main',
'tfkit-config=tfkit.config_cli:main'
]
},
py_modules=['tfkit'],
python_requires=">=3.5.0",
zip_safe=False,
)