-
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
Showing
4 changed files
with
62 additions
and
40 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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 0.1.0 | ||
current_version = 0.2.10 | ||
commit = True | ||
tag = True | ||
|
||
|
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 |
---|---|---|
|
@@ -5,16 +5,13 @@ | |
|
||
from setuptools import setup, find_packages | ||
|
||
with open('README.rst') as readme_file: | ||
with open("README.rst") as readme_file: | ||
readme = readme_file.read() | ||
|
||
with open('HISTORY.rst') as history_file: | ||
with open("HISTORY.rst") as history_file: | ||
history = history_file.read() | ||
|
||
requirements = [ | ||
'Click>=6.0', | ||
'suds2==0.7.1' | ||
] | ||
requirements = ["Click>=6.0", "suds2==0.7.1"] | ||
|
||
setup_requirements = [ | ||
# TODO(ovnicraft): put setup requirements (distutils extensions, etc.) here | ||
|
@@ -25,37 +22,30 @@ | |
] | ||
|
||
setup( | ||
name='runa', | ||
version='0.2.9', | ||
name="runa", | ||
version="0.2.10", | ||
description="Librería para uso de WS del Bus Gubernamental de Ecuador", | ||
long_description=readme + '\n\n' + history, | ||
long_description=readme + "\n\n" + history, | ||
author="Cristian Salamea", | ||
author_email='[email protected]', | ||
url='https://github.com/ovnicraft/runa', | ||
packages=find_packages(include=['runa']), | ||
entry_points={ | ||
'console_scripts': [ | ||
'runa=runa.cli:main' | ||
] | ||
}, | ||
author_email="[email protected]", | ||
url="https://github.com/ovnicraft/runa", | ||
packages=find_packages(include=["runa"]), | ||
entry_points={"console_scripts": ["runa=runa.cli:main"]}, | ||
include_package_data=True, | ||
install_requires=requirements, | ||
license="MIT license", | ||
zip_safe=False, | ||
keywords='runa webservices ecuador bgs', | ||
keywords="runa webservices ecuador bgs", | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: MIT License', | ||
'Natural Language :: English', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.3', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
"Development Status :: 3 - Beta", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Natural Language :: English", | ||
"Programming Language :: Python :: 3.4", | ||
"Programming Language :: Python :: 3.5", | ||
"Programming Language :: Python :: 3.6", | ||
], | ||
test_suite='tests', | ||
test_suite="tests", | ||
tests_require=test_requirements, | ||
setup_requires=setup_requirements, | ||
) |