forked from mvexel/overpass-api-python-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 900 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 900 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
from setuptools import setup
setup(
name="overpass",
packages=["overpass"],
version="0.7",
description="Python wrapper for the OpenStreetMap Overpass API",
long_description="See README.md",
author="Martijn van Exel",
author_email="m@rtijn.org",
url="https://github.com/mvexel/overpass-api-python-wrapper",
license="Apache",
keywords=["openstreetmap", "overpass", "wrapper"],
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Utilities",
],
install_requires=["requests>=2.3.0", "geojson>=1.0.9", "shapely>=1.6.4"],
extras_require={"test": ["pytest"]},
)