2015-04-09 09:56:49 +00:00
import sys
from setuptools import setup , find_packages
2015-06-12 09:51:05 +00:00
NAME = " swagger_client "
VERSION = " 1.0.0 "
2015-04-09 09:56:49 +00:00
2015-06-09 05:52:01 +00:00
# To install the library, open a Terminal shell, then run this
# file by typing:
#
# python setup.py install
#
# You need to have the setuptools module installed.
# Try reading the setuptools documentation:
# http://pypi.python.org/pypi/setuptools
2015-06-30 09:20:53 +00:00
REQUIRES = [ " urllib3 >= 1.10 " , " six >= 1.9 " , " certifi " , " python-dateutil " ]
2015-06-09 05:52:01 +00:00
setup (
2015-06-12 09:51:05 +00:00
name = NAME ,
version = VERSION ,
2015-04-09 09:56:49 +00:00
description = " Swagger Petstore " ,
2015-06-07 15:46:11 +00:00
author_email = " apiteam@swagger.io " ,
2015-04-09 09:56:49 +00:00
url = " " ,
keywords = [ " Swagger " , " Swagger Petstore " ] ,
install_requires = REQUIRES ,
packages = find_packages ( ) ,
include_package_data = True ,
long_description = """ \
This is a sample server Petstore server . You can find out more about Swagger at & lt ; a href = \& quot ; http : / / swagger . io \& quot ; & gt ; http : / / swagger . io & lt ; / a & gt ; or on irc . freenode . net , #swagger. For this sample, you can use the api key \"special-key\" to test the authorization filters
"""
2015-06-09 05:52:01 +00:00
)
2015-04-09 09:56:49 +00:00