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

@@ -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)
)