-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
38 lines (34 loc) · 1.91 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
import setuptools
# Reads the content of your README.md into a variable to be used in the setup below
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name='saturatedplaces', # should match the package folder
packages=['saturatedplaces'], # should match the package folder
version='0.1.2', # important for updates
license='MIT', # should match your chosen license
description='Faster, cheaper way of pulling Places API data for large geographies ',
long_description=long_description, # loads your README.md
long_description_content_type="text/markdown", # README.md is of type 'markdown'
author='Hisham Sajid',
author_email='[email protected]',
url='https://github.com/hishamsajid/saturated-places',
project_urls = { # Optional
"Bug Tracker": "https://github.com/hishamsajid/saturated-places/issues"
},
install_requires=['pandas','numpy','pyproj','requests',
'geopandas','shapely',
'scipy'], # list all packages that your package uses
keywords=["pypi", "saturated-places", "gis",'places api','poi'], #descriptive meta-data
classifiers=[ # https://pypi.org/classifiers
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Documentation',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
download_url="https://github.com/hishamsajid/saturated-places/archive/refs/tags/0.1.2.tar.gz",
)