Sha256: 6b0f6f46873ae7a6cf07b60a0d1c8940d01b8674f54fdd98f4cf0d43ccdfb3b0
Contents?: true
Size: 1.11 KB
Versions: 34
Compression:
Stored size: 1.11 KB
Contents
# coding: utf-8 """ Pulp 3 API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: v3 Generated by: https://openapi-generator.tech """ from setuptools import setup, find_packages # noqa: H301 NAME = "pulp_2to3_migration-client" VERSION = "0.2.0b3.dev0" # 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="Pulp 3 API", author="OpenAPI Generator community", author_email="team@openapitools.org", url="", keywords=["OpenAPI", "OpenAPI-Generator", "Pulp 3 API"], install_requires=REQUIRES, packages=find_packages(exclude=["test", "tests"]), include_package_data=True, license="GPLv2+", long_description="""\ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 """ )
Version data entries
34 entries across 34 versions & 1 rubygems