-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 931 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 931 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='wikigeo',
version='1.3.0',
description='Getting point of interest data by geographic coordinates from Wikipedia',
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
author='Mary McGuire',
author_email='marymcguire1718@gmail.com',
install_requires=["requests_html",
"fuzzywuzzy", "python-Levenshtein-wheels"],
extras_require={"pytest": "pytest==6.0.1", "tox": "tox==3.19.0"},
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Wiki"
],
url='https://github.com/mmc1718/wikigeo'
)