Skip to content
Snippets Groups Projects
Select Git revision
  • 2f79c29d8480d618fb3aaaf519b16114c96fd9bf
  • develop default
  • master protected
  • async-provision
  • DBOARD3-1252/inventory-api
  • 0.90
  • 0.89
  • 0.88
  • 0.87
  • 0.86
  • 0.85
  • 0.84
  • 0.83
  • 0.82
  • 0.81
  • 0.80
  • 0.79
  • 0.78
  • 0.77
  • 0.76
  • 0.75
  • 0.74
  • 0.73
  • 0.72
  • 0.71
25 results

conftest.py

Blame
  • setup.py 1.27 KiB
    from setuptools import find_packages, setup
    
    setup(
        name="goat-lso",
        version="0.1",
        author="GÉANT Orchestration & Automation Team",
        author_email="TBD",
        description="Lightweight Service Orchestrator",
        url="https://gitlab.geant.org/goat/gap/lso",
        packages=find_packages(),
        install_requires=[
            "jsonschema~=4.20.0",
            "fastapi~=0.104.1",
            "pydantic~=2.5.1",
            "ansible~=9.0.1",
            "requests~=2.31.0",
            "uvicorn~=0.22.0",
            "ncclient~=0.6.13",
            "xmltodict~=0.13.0",
            "netaddr~=0.9.0",
            "jmespath~=1.0.0",
            "dictdiffer~=0.9.0",
            "ansible-runner~=2.3.3",
            "junos-eznc~=2.6.8",
            "jxmlease~=1.0.3",
            "ansible-core~=2.16.0",
            "ansible_merge_vars~=5.0.0",
            "httpx~=0.25.1",
            "GitPython~=3.1.40",
            "jinja2==3.1.2",
            "ruamel.yaml~=0.18.5",
        ],
        license="MIT",
        license_files=("LICENSE.txt",),
        classifiers=[
            "Programming Language :: Python :: 3",
            "Programming Language :: Python :: 3.10",
            "Programming Language :: Python :: 3.11",
            "License :: OSI Approved :: MIT License",
            "Operating System :: OS Independent",
            "Development Status :: 2 - Pre-Alpha",
        ],
        python_requires=">=3.10",
    )