-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·31 lines (29 loc) · 1.13 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
from setuptools import find_packages
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="transcriber-wrapper",
description="A wrapper of well-known translators that transform text into its phonetic transcription",
version="1.2.1",
include_package_data=True,
packages=find_packages(),
install_requires=["pyparsing~=2.4"],
author="Willian Antunes",
author_email="[email protected]",
license="GPL3",
keywords="linguistics ipa transcriber phonetics pronunciation dictionary",
url="https://github.com/willianantunes/transcriber-wrapper",
project_urls={
"Bug Tracker": "https://github.com/willianantunes/transcriber-wrapper/issues",
},
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: " "GNU General Public License v3 or later (GPLv3+)",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
],
python_requires=">=3.9",
)