-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
52 lines (50 loc) · 2.37 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
import setuptools
with open("PYPI_description.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="wordhoard",
version="1.5.5",
author="John Bumgarner",
author_email="[email protected]",
description="A comprehensive lexical discovery application that is useful for finding semantic relationships "
"such as, the antonyms, synonyms, hypernyms, hyponyms, homophones and definitions for a specific word.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/johnbumgarner/wordhoard",
packages=setuptools.find_packages(),
include_package_data=True,
package_data={'files': ['files/common_user_agents.pkl',
'files/common_english_homophones.pkl',
'files/no_homophones_english.pkl']},
license='LICENSE.txt',
classifiers=["Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
"Topic :: Text Processing :: Linguistic",
"Topic :: Utilities"],
keywords=['antonyms', 'bag of words', 'definitions', 'hypernyms', 'hyponyms', 'homophones',
'information retrieval', 'lexicon', 'semantic relationships', 'synonyms',
'natural language processing'],
python_requires='>=3.8',
install_requires=['backoff>=2.2.1',
'beautifulsoup4>=4.12.2',
'certifi>=2024.2.2',
'charset-normalizer>=3.3.2',
'cloudscraper>=1.2.71',
'deckar01-ratelimit>=3.0.2',
'deepl>=1.18.0',
'docutils>=0.21.2',
'idna>=3.7',
'lxml>=5.2.2',
'pyparsing>=3.1.2',
'requests>=2.32.2',
'requests-toolbelt>=1.0.0',
'soupsieve>=2.5',
'urllib3>=2.2.1']
)