Skip to content
setup.py 890 B
Newer Older
# coding: utf-8

import sys
from setuptools import setup, find_packages

VERSION = "1.0.0"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools

REQUIRES = [
    "connexion"
    # "swagger-ui-bundle>=0.0.2",
    # "requests"
]

setup(
    name=NAME,
    version=VERSION,
    description="π-edge Controller API",
    author_email="nikpsarom@intracom-telecom.com",
    keywords=["Swagger", "pi-edge Controller API"],
    install_requires=REQUIRES,
    packages=find_packages(),
    package_data={'': ['swagger/swagger.yaml']},
    include_package_data=True,
    entry_points={
        'console_scripts': ['src=src.__main__:main']},
    long_description="""\
    API exposed by π-edge for \"PaaS & Service Function\" - based interaction with NFV MANO. 
    """
)