-
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.
Fixing small bug when fuelEconomy is missing from response.
- Loading branch information
Showing
3 changed files
with
6 additions
and
4 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,5 +1,6 @@ | ||
__pycache__/ | ||
env/ | ||
.env/ | ||
build/ | ||
dist/ | ||
*.egg-info/ | ||
|
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 |
---|---|---|
|
@@ -10,20 +10,21 @@ | |
setup( | ||
name = 'connectedcars', | ||
packages = ['connectedcars'], | ||
version = '0.1.3', | ||
version = '0.1.5', | ||
license = 'MIT', | ||
description = 'Wrapper for access the Connected Cars API - an AVL/data collection service installed in most new danish vehicles from Audi, Volkswagen, Skoda and SEAT.', | ||
long_description = long_description, | ||
long_description_content_type = 'text/markdown', | ||
author = 'Niklas Christoffer Petersen', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/niklascp/connectedcars-python', | ||
download_url = 'https://github.com/niklascp/connectedcars-python/archive/v0.1.0.tar.gz', | ||
download_url = 'https://github.com/niklascp/connectedcars-python/archive/v0.1.4.tar.gz', | ||
keywords = ['AVL', 'Audi', 'Volkswagen', 'Skoda', 'SEAT'], | ||
install_requires = install_requires, | ||
classifiers = [ | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
], | ||
) |