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

25 lines
569 B
TOML
Raw Normal View History

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 }
2022-04-19 01:03:13 +00:00
colorama = { version = "^0.4.4", optional = true }
2022-04-18 23:18:52 +00:00
[tool.poetry.extras]
2022-04-19 01:03:13 +00:00
cli = ["click", "colorama"]
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"