-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (41 loc) · 1.11 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
[project]
name = "tomlval"
version = "1.1.2"
description = "A simple and easy to use TOML validator for Python."
authors = [
{ name = "Marcus Fredriksson", email = "[email protected]" },
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = { file = "LICENSE" }
requires-python = ">=3.11"
readme = "README.md"
keywords = ["toml", "validator", "validation", "parser", "python"]
dependencies = []
[project.optional-dependencies]
build = ["build", "twine"]
dev = [
"black>=24.10.0",
"pytest>=8.3.4",
"isort>=5.13.2",
"pylint>=3.3.2",
"pre-commit>=4.0.1",
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["tomlval", "tomlval.*"]
[tool.black]
line-length = 80
target-version = ['py311']
[tool.isort]
profile = "black"
line_length = 80
[project.urls]
Homepage = "https://github.com/marcusfrdk/tomlval"
Repository = "https://github.com/marcusfrdk/tomlval"
Issues = "https://github.com/marcusfrdk/tomlval/issues"