[tool.poetry] name = "skyline-config" version = "0.1.0" description = "" license = "Apache-2.0" authors = ["OpenStack "] [tool.poetry.dependencies] python = "^3.8" pydantic = "*" immutables = "*" PyYAML = "*" [tool.poetry.dev-dependencies] isort = "*" black = "^21.5b1" add-trailing-comma = "*" flake8 = "*" mypy = "*" types-PyYAML = "*" pytest = "*" pytest-xdist = "*" mimesis = "*" pytest-cov = "*" pytest-html = "*" [tool.pytest.ini_options] minversion = "6.0" addopts = "-v -s -p no:cacheprovider -n auto --cov=skyline_config --cov-append --cov-report=term-missing --cov-report=html" testpaths = [ "tests", ] markers = [ "ddt(*args: TestData): Mark the test as a data-driven test." ] [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api"