forked from CUNY-CL/wikipron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
63 lines (55 loc) · 1.96 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
60
61
62
63
import os
import setuptools
_VERSION = "1.1.0"
_THIS_DIR = os.path.dirname(os.path.realpath(__file__))
with open(os.path.join(_THIS_DIR, "README.md"), encoding="utf-8") as f:
_LONG_DESCRIPTION = f.read().strip()
def main():
setuptools.setup(
name="wikipron",
version=_VERSION,
author="Kyle Gorman, Jackson Lee, Elizabeth Garza",
author_email="[email protected]",
description="Scraping grapheme-to-phoneme data from Wiktionary.",
long_description=_LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/kylebgorman/wikipron",
keywords=[
"computational linguistics",
"natural language processing",
"phonology",
"phonetics",
"speech",
"language",
"Wiktionary",
],
license="Apache 2.0",
packages=setuptools.find_packages(),
python_requires=">=3.6",
zip_safe=False,
setup_requires=["setuptools>=39"],
install_requires=[
"iso639",
"requests",
"requests-html",
"segments>=2.1.3,<3",
"setuptools",
],
entry_points={"console_scripts": ["wikipron = wikipron.cli:main"]},
classifiers=[
"Programming Language :: Python :: 3",
"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",
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Text Processing :: Linguistic",
],
data_files=[(".", ["LICENSE.txt"])],
)
if __name__ == "__main__":
main()