-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (26 loc) · 982 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
26
27
28
29
import sys
import os
from setuptools import setup, find_packages
req_path = os.path.join(os.path.abspath(os.path.dirname(__file__)), "requirements.txt")
with open(req_path) as f:
reqs = f.read().splitlines()
readme_path = os.path.join(os.path.abspath(os.path.dirname(__file__)), "README.md")
with open(readme_path) as f:
long_description = f.read()
setup(name="chauffeur-pass",
version="0.0.1",
author="Jamison Polackwich",
author_email='rjpolackwich@gmail.com',
description="Python API for making OSM queries via Overpass",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/rjpolackwich/chauffeur",
license="MIT",
packages=find_packages(exclude=['docs', 'tests']),
install_requires=reqs,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License"
],
python_requires='>3.7',
)