2022-04-13 15:54:53 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "cfig"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "The ultimate configuration manager"
|
|
|
|
authors = ["Stefano Pigozzi <me@steffo.eu>"]
|
|
|
|
license = "MIT"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.10"
|
|
|
|
lazy-object-proxy = "^1.7.1"
|
2022-04-18 23:18:52 +00:00
|
|
|
click = { version = "^8.1.2", optional = true }
|
|
|
|
|
|
|
|
[tool.poetry.extras]
|
|
|
|
cli = ["click"]
|
2022-04-13 15:54:53 +00:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
pytest = "^7.1.1"
|
2022-04-16 03:17:21 +00:00
|
|
|
Sphinx = "^4.5.0"
|
|
|
|
sphinx-rtd-theme = "^1.0.0"
|
2022-04-13 15:54:53 +00:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|