-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (51 loc) · 1.23 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "crudtoml"
authors = [{name = "Edward Knight", email = "[email protected]"}]
license = {file = "LICENSE"}
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: File Formats",
"Topic :: Text Processing",
"Topic :: Utilities",
"Typing :: Typed",
]
keywords = ["TOML"]
dynamic = ["version", "description"]
requires-python = "~= 3.10"
dependencies = [
"tomlkit ~= 0.8", # keep in sync with .pre-commit-config.yaml
]
[project.scripts]
crudtoml = "crudtoml:main"
[project.urls]
Home = "https://github.com/Edward-Knight/crudtoml"
[project.optional-dependencies]
test = [
"pytest ~= 7.3",
"pytest-cov ~= 4.1",
]
[tool.pytest.ini_options]
addopts = [
"--strict-config",
"--strict-markers",
"--cov=crudtoml",
"--cov-branch",
]
required_plugins = [
"pytest-cov",
]
log_file_level = "DEBUG"
xfail_strict = true
filterwarnings = [
"error",
]