You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
978 B
Python
40 lines
978 B
Python
# coding: utf-8
|
|
|
|
"""
|
|
BuJu API
|
|
|
|
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
|
|
|
|
OpenAPI spec version: 0.1.0
|
|
|
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
"""
|
|
|
|
from setuptools import setup, find_packages # noqa: H301
|
|
|
|
NAME = "swagger-client"
|
|
VERSION = "1.0.0"
|
|
# To install the library, run the following
|
|
#
|
|
# python setup.py install
|
|
#
|
|
# prerequisite: setuptools
|
|
# http://pypi.python.org/pypi/setuptools
|
|
|
|
REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil"]
|
|
|
|
setup(
|
|
name=NAME,
|
|
version=VERSION,
|
|
description="BuJu API",
|
|
author_email="",
|
|
url="",
|
|
keywords=["Swagger", "BuJu API"],
|
|
install_requires=REQUIRES,
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
long_description="""\
|
|
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
|
|
"""
|
|
)
|