-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
50 lines (45 loc) · 1.52 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
from os import path
from setuptools import find_packages, setup
here = path.abspath(path.dirname(__file__))
with open("README.md", "r", encoding="utf-8") as f:
readme = f.read()
with open(path.join(here, "requirements.txt"), encoding="utf-8") as f:
requires = [req.strip() for req in f if req]
setup(
name="distilbert-punctuator",
version="0.3.0",
description="A small seq2seq punctuator tool based on DistilBERT",
long_description=readme,
long_description_content_type="text/markdown",
author="Zhong Qishuai",
author_email="[email protected]",
url="https://github.com/FerdinandZhong/punctuator",
packages=find_packages(exclude=["tests*", "example*"]),
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires=">3.6",
install_requires=requires,
extras_require={
"data_process": ["pandas>=1.1.0"],
"training": ["scikit-learn>=0.23.2", "tensorboard"],
"dev": [
"pytest>=6",
"flake8>=3.8",
"black>=20.8b1",
"isort>=5.6",
"autoflake>=1.4",
"pandas>=1.1.0",
"scikit-learn>=0.23.2"
],
},
zip_safe=False,
entry_points={
"console_scripts": [],
},
)