Skip to content
Snippets Groups Projects
Select Git revision
  • 9c37b26d44d72c41b4cc9cb3d95149998ea2bc99
  • master default protected
  • develop
  • featureXnymous
  • moveToL10woSimpleSaml
  • upgrateToL10
  • setupDoc
  • tomas.budvytis-master-patch-06795
  • v1.0.0
9 results

AttrReleaseTestController.php

Blame
  • setup.py 598 B
    from setuptools import find_packages, setup
    
    setup(
        name="geant-service-orchestrator",
        version="0.2",
        author="GÉANT",
        author_email="swd@geant.org",
        description="GÉANT Service Orchestrator",
        url="https://gitlab.software.geant.org/goat/gap/geant-service-orchestrator",
        packages=find_packages(),
        install_requires=[
            "orchestrator-core==1.3.4",
            "requests==2.31.0",
            "infoblox-client~=0.6.0",
            "pycountry==22.3.5",
            "pynetbox==7.2.0",
            "celery-redbeat==2.1.1",
            "celery==5.3.4",
        ],
        include_package_data=True,
    )