1
Fork 0
mirror of https://github.com/Steffo99/cfig.git synced 2024-10-16 14:27:38 +00:00
cfig/pyproject.toml
2022-04-19 03:03:13 +02:00

24 lines
569 B
TOML

[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"
click = { version = "^8.1.2", optional = true }
colorama = { version = "^0.4.4", optional = true }
[tool.poetry.extras]
cli = ["click", "colorama"]
[tool.poetry.dev-dependencies]
pytest = "^7.1.1"
Sphinx = "^4.5.0"
sphinx-rtd-theme = "^1.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"