-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7e689f0
commit 9b7cb50
Showing
4 changed files
with
13 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
from rjpl.methods import location, trip, departureBoard, multiDepartureBoard, stopsNearby | ||
from rjpl.classes import Coord, Stop, ConnectionError, HTTPError, APIError | ||
from rjpl.classes import Coord, Stop, rjplConnectionError, rjplHTTPError, rjplAPIError |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,15 +7,15 @@ | |
setup( | ||
name = 'rjpl', | ||
packages = ['rjpl'], | ||
version = '0.3.4', | ||
version = '0.3.5', | ||
license='MIT', | ||
description = 'Interface with Rejseplanen API', | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
author = 'Thomas Passer Jensen', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/tomatpasser/python-rejseplanen', | ||
download_url = 'https://github.com/tomatpasser/python-rejseplanen/archive/v0.3.4.tar.gz', | ||
download_url = 'https://github.com/tomatpasser/python-rejseplanen/archive/v0.3.5.tar.gz', | ||
keywords = ['transport', 'rejseplanen', 'timetable', 'journey', 'public transport'], | ||
install_requires=[ | ||
'requests>=2.9.1', | ||
|