-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (34 loc) · 952 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[tool.poetry]
name = "hydralette"
version = "0.2.4"
description = ""
authors = ["ValeKnappich"]
readme = "README.md"
packages = [{include = "hydralette"}]
keywords = ["config", "cfg", "hydra"]
license = "MIT"
homepage = "https://github.com/ValeKnappich/hydralette"
repository = "https://github.com/ValeKnappich/hydralette"
include = ["LICENSE"]
[tool.poetry.dependencies]
python = "^3.10"
pyyaml = "^6.0.1"
dill = "^0.3.7"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.3.3"
debugpy = "^1.6.7.post1"
pytest = "^7.4.2"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.5.2"
mkdocs-material = "^9.2.8"
pillow = "^10.0.0"
cairosvg = "^2.7.1"
mkdocstrings = {extras = ["python"], version = "^0.23.0"}
mkdocs-gen-files = "^0.5.0"
mkdocs-literate-nav = "^0.6.1"
mkdocs-git-revision-date-localized-plugin = "^1.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = "tests/"