Files
connexion/setup.py
2015-04-29 11:00:32 +02:00

27 lines
779 B
Python

#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from connexion.version import version
setup(
name='connexion',
packages=find_packages(),
version=version,
description='Connexion - API first applications with swagger and flask',
author='Zalando SE',
url='https://github.com/zalando/',
license='Apache License Version 2.0',
install_requires=['flask', 'PyYAML', 'tornado'],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
],
long_description='Connexion - API first applications with swagger and flask',
)