-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (31 loc) · 1.04 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
from setuptools import find_packages
from setuptools import setup
long_description = open("README.md", encoding="utf-8").read()
description = "GoogleMapsPY aim to scrape data from Google Maps without Google API"
version = "1.0"
setup(
name="GoogleMapsPY",
version=version,
license="MIT License",
author="Ammar Alkotb",
author_email="[email protected]",
description=description,
packages=find_packages(),
url="https://github.com/3mora2/GoogleMapsPY",
project_urls={"Bug Report": "https://github.com/3mora2/GoogleMapsPY/issues/new"},
install_requires=[
"requests",
"numpy",
"fake-useragent",
],
long_description=long_description,
long_description_content_type="text/markdown",
package_dir={"": "."},
# package_data={"GoogleMapsPY": ["*.md"]},
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)