Update setup.py to include readme and set version as 0.1

This commit is contained in:
João Santos
2015-05-19 15:23:30 +02:00
parent 5b94fb673a
commit c3b01b4ddb
3 changed files with 16 additions and 3 deletions

View File

@@ -1,3 +1,16 @@
.. image:: https://pypip.in/version/connexion/badge.svg
:target: https://pypi.python.org/pypi/connexion
:alt: Latest Version
.. image:: https://pypip.in/status/connexion/badge.svg
:target: https://pypi.python.org/pypi/connexion
:alt: Development Status
.. image:: https://img.shields.io/pypi/l/connexion.svg
:target: https://github.com/zalando/connexion/blob/master/LICENSE
:alt: License
Connexion
=========

View File

@@ -1 +1 @@
version = 0
version = 0.1

View File

@@ -11,8 +11,9 @@ setup(
packages=find_packages(),
version=version,
description='Connexion - API first applications with swagger and flask',
long_description=open('README.rst').read(),
author='Zalando SE',
url='https://github.com/zalando/',
url='https://github.com/zalando/connexion',
license='Apache License Version 2.0',
install_requires=['flask', 'PyYAML', 'tornado', 'requests'],
classifiers=[
@@ -22,7 +23,6 @@ setup(
'Intended Audience :: Developers',
'Operating System :: OS Independent',
],
long_description='Connexion - API first applications with swagger and flask',
include_package_data=True, # needed to include swagger-ui (see MANIFEST.in)
)