-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 783 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import setuptools
with open("README.md", 'r') as f:
long_description = f.read()
setuptools.setup(
name = "gomaps",
version = "0.3.6",
author = "David J. Morfe",
author_email = "morphetech@gmail.com",
license = "MIT",
description = "A Google Maps web scraper that gets place data based on a search",
long_description=long_description,
long_description_content_type = "text/markdown",
url = "https://github.com/jakeee51/gomaps",
install_requires = ["requests_html", "pyppdf", "GeoLiberator"],
packages = setuptools.find_packages(),
py_modules = ["gmapss", "utils"],
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"]
)