Skip to content
Snippets Groups Projects
Select Git revision
  • 974cea2d9bbba9b984694f4ce107f3255f076b08
  • main default
2 results

setup_editorclient.py

Blame
  • setup_editorclient.py 990 B
    # SPDX-License-Identifier: Apache-2.0
    # coding: utf-8
    
    """
        DSA API REST Web Service
    
        Manage DSA Subsystem  # noqa: E501
    
        OpenAPI spec version: 1.0
        Contact: noreply@coco-cloud.eu
        Generated by: https://github.com/swagger-api/swagger-codegen.git
    """
    
    
    from setuptools import setup, find_packages  # noqa: H301
    
    NAME = "cnl_editor_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 = [
        "certifi>=2017.4.17",
        "python-dateutil>=2.1",
        "six>=1.10",
        "urllib3>=1.23"
    ]
        
    
    setup(
        name=NAME,
        version=VERSION,
        description="DSA API REST Web Service",
        author_email="noreply@coco-cloud.eu",
        url="",
        keywords=["Swagger", "DSA API REST Web Service"],
        install_requires=REQUIRES,
        packages=find_packages(),
        include_package_data=True,
        long_description="""\
        Manage DSA Subsystem  # noqa: E501
        """
    )