File: setup.py

package info (click to toggle)
python-overpy 0.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 556 kB
  • sloc: python: 2,235; xml: 1,055; makefile: 150
file content (25 lines) | stat: -rwxr-xr-x 635 bytes parent folder | download
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
#!/usr/bin/env python
from pathlib import Path
from setuptools import setup, find_packages

HERE = Path(__file__).resolve().parent

about = {}
exec((HERE / "overpy" / "__about__.py").read_text(), about)

setup(
    name=about["__title__"],
    version=about["__version__"],

    description=about["__summary__"],
    license=about["__license__"],
    url=about["__uri__"],
    author=about["__author__"],
    keywords="OverPy Overpass OSM OpenStreetMap",
    install_requires=[],
    packages=find_packages(exclude=["*.tests", "*.tests.*", "tests"]),
    package_data={
        # "": ["README"],
    },
    tests_require=["pytest"],
)