-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 673 Bytes
/
setup.py
File metadata and controls
26 lines (22 loc) · 673 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
26
#!/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"],
},
setup_requires=["pytest-runner"],
tests_require=["pytest"],
)