File: setup.py

package info (click to toggle)
overpass 0.7-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 208 kB
  • sloc: python: 324; makefile: 6
file content (24 lines) | stat: -rw-r--r-- 851 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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.5",
        "Programming Language :: Python :: 3.6",
        "Programming Language :: Python :: 3.7",
        "Topic :: Scientific/Engineering :: GIS",
        "Topic :: Utilities",
    ],
    install_requires=["requests>=2.3.0", "geojson>=1.0.9", "shapely>=1.6.4"],
    extras_require={"test": ["pytest"]},
)