-
-
Notifications
You must be signed in to change notification settings - Fork 91
/
setup.py
25 lines (24 loc) · 925 Bytes
/
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
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="[email protected]",
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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Utilities",
],
install_requires=["requests>=2.3.0", "osm2geojson"],
extras_require={"test": ["pytest", "requests-mock[fixture]", "geojson>=1.0.9"]},
)