-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (34 loc) · 942 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
40
41
[project]
name = "nattrs"
version = "0.2.3"
description = "Nested attribute getter/setter that works with dictionaries and objects interchangeably."
authors = [{name = "Ludvig", email = "<[email protected]>"}]
readme = "README.md"
license = "MIT"
keywords = [
"attributes",
"dictionaries",
"class",
"recursive",
"get",
"set",
"inplace"
]
[project.urls]
Repository = "https://github.com/ludvigolsen/nattrs"
Issues = "https://github.com/ludvigolsen/nattrs/issues"
Changelog = "https://github.com/ludvigolsen/nattrs/blob/main/CHANGELOG.md"
[tool.poetry]
include = ["CHANGELOG.md"]
[tool.poetry.urls]
issues = "https://github.com/ludvigolsen/nattrs/issues"
[tool.poetry.dependencies]
python = "^3.8"
zipp = "^3.19.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401"]