-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 847 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 847 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
import setuptools
with open("./README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open('./requirements.txt', encoding="utf-8") as f:
requirements = f.read().splitlines()
setuptools.setup(
name="punctfix",
version="0.11.1",
author="Martin Carsten Nielsen",
author_email="martin@alvenir.ai",
description="Punctuation restoration library",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=requirements,
license_file="LICENCE.txt",
url="https://github.com/danspeech/punctfix",
classifiers=[
"Programming Language :: Python :: 3",
'Development Status :: 5 - Production/Stable',
"Operating System :: OS Independent",
],
)