-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
51 lines (44 loc) · 1.12 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "glom-dict"
version = "0.0.2a"
description = "Custom Dictionary with glom get, set and del methods"
authors = ["Gabriel <[email protected]>"]
license = "MIT License"
readme = "README.md"
repository = "https://github.com/kilo59/glom-dict"
homepage = "https://github.com/kilo59/glom-dict"
keywords = ["glom", "dict", "nested"]
packages = [ { include = "glom_dict", from = "src" } ]
[tool.poetry.dependencies]
python = "^3.6.2"
glom = "^20.11.0"
[tool.poetry.dev-dependencies]
# formatting, quality, tests
black = "^22.3.0"
isort = "^5.7.0"
mypy = "^0.961"
pytest = "^7"
pytest-cov = "^2.11.1"
pytest-sugar = "^0.9.4"
pytest-icdiff = "^0.5"
# tasks
duty = "^0.7.0"
git-changelog = "^0.4.2"
httpx = "^0.16.1"
jinja2-cli = "^0.7.0"
toml = "^0.10.2"
# linting
prospector = "^1.5"
# docs
mkdocs = "^1.3.0"
MarkupSafe = "=2.0.1" # fix missing `soft_unicode` error
mkdocs-coverage = "^0.2.1"
mkdocs-macros-plugin = "^0.5.0"
mkdocs-material = "^6.2.7"
mkdocstrings = "^0.15.0"
[tool.isort]
known_first_party = "glom_dict"
profile = "black"