Select Git revision
conftest.py
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",
)