-
Notifications
You must be signed in to change notification settings - Fork 34
/
pyproject.toml
65 lines (55 loc) · 1.5 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[build-system]
requires = ["setuptools>=69", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "deepmerge"
description = "A toolset for deeply merging Python dictionaries."
authors = [
{name = "Yusuke Tsutsumi", email = "[email protected]"},
]
# Dependency Information
requires-python = ">=3.8"
dependencies = [
"typing_extensions;python_version<='3.9'",
]
# Extra Information
readme = "README.rst"
license = {text = "MIT Licence"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Typing :: Typed",
]
dynamic = ["version"]
[project.urls]
Homepage = "http://deepmerge.readthedocs.io/en/latest/"
GitHub = "https://github.com/toumorokoshi/deepmerge"
[project.optional-dependencies]
dev = [
## Formatting / Linting
"validate-pyproject[all]",
"pyupgrade",
"black",
"mypy",
## Testing
"pytest",
## Build / Release
"build",
"twine",
]
[tool.setuptools.packages.find]
include = ["deepmerge*"]
exclude = ["tests*", "*.tests*"]
[tool.setuptools.package-data]
deepmerge = ["py.typed"]
[tool.setuptools_scm]
write_to = "deepmerge/_version.py"
[tool.black]
line-length = 100