-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add classifiers and update for 0.0.2
- Loading branch information
Showing
1 changed file
with
13 additions
and
2 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 |
---|---|---|
|
@@ -14,14 +14,25 @@ | |
|
||
setup( | ||
name='python_opendata_transport', | ||
version='0.0.1', | ||
version='0.0.2', | ||
description='Python API for interacting with transport.opendata.ch.', | ||
url='https://github.com/fabaff/python-opendata-transport', | ||
download_url='https://github.com/fabaff/python-opendata-transport/releases', | ||
author='Fabian Affolter', | ||
author_email='[email protected]', | ||
license='MIT', | ||
install_requires=['requests>=2.0', 'pytz'], | ||
install_requires=['aiohttp'], | ||
packages=['opendata_transport'], | ||
zip_safe=True, | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Environment :: Console', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: MIT License', | ||
'Operating System :: MacOS :: MacOS X', | ||
'Operating System :: Microsoft :: Windows', | ||
'Operating System :: POSIX', | ||
'Programming Language :: Python :: 3.4', | ||
'Topic :: Utilities', | ||
], | ||
) |