Skip to content
Snippets Groups Projects
Select Git revision
  • 6fc91c334bda7635a094391d65c3d7abe1f171ce
  • develop default protected
  • master protected
  • 1.17
  • 1.14.1
  • 1.16.0
  • 1.16
  • 1.15.1
  • 1.15.0
  • 1.15
  • 1.14
  • 1.13
  • 1.12
  • 1.11
  • 1.10
  • 1.9
  • Lime-Seal
  • 1.8
  • 1.7
  • 1.6
  • 1.5
  • 1.4
  • 1.3
23 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",
    )