-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
21 lines (19 loc) · 813 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='vbbpy',
version='1.1.8',
python_requires='>3.6',
description='A python wrapper for the VBB REST-API by derhuerst',
long_description=long_description,
long_description_content_type='text/markdown',
download_url="https://github.com/Colum31/vbb-pythonWrapper",
author='colum31',
license="MIT",
packages=['vbbpy'],
install_requires=['requests', 'datetime', 'geopy'], # external packages acting as dependencies
scripts=['examples/vbbpy-stationId', 'examples/vbbpy-stationInformation', 'examples/vbbpy-showDepartures',
'examples/vbbpy-addressRouting', 'examples/vbbpy-nearbyStations']
)