-
-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (51 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
56 lines (51 loc) · 1.29 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "jsonmodels"
version = "2.8.0"
description = "Models to make easier to deal with structures that are converted to, or read from JSON."
readme = "README.rst"
requires-python = ">=3.10"
license = { file = "LICENSE" }
dependencies = ["python-dateutil"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3 :: Only",
]
authors = [{ name = "Szczepan Cieślik", email = "szczepan.cieslik@gmail.com" }]
[project.optional-dependencies]
dev = [
"Jinja2",
"MarkupSafe",
"Pygments",
"Sphinx",
"coverage",
"docutils",
"flake8",
"flake8-pyproject",
"invoke",
"isort",
"mccabe",
"pep8",
"pyflakes",
"pytest",
"pytest-cov",
"sphinxcontrib-spelling",
]
[project.urls]
"Home" = "https://github.com/jazzband/jsonmodels"
[tool.flake8]
exclude = ["./docs/conf.py"]
max-complexity = 8
max_line_length = 88
[tool.isort]
profile = "black"