-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
105 lines (87 loc) · 2.2 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project]
name = "miniscons"
description = "SCons builders."
version = "0.11.2"
keywords = ["SCons", "SConstruct", "builders"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
requires-python = ">=3.8"
dependencies = [
"emoji~=1.7.0",
"psutil~=5.9.0",
"SCons~=4.3.0",
"walkmate~=1.5.0",
]
[project.optional-dependencies]
all = [
"autoflake~=1.4",
"black~=22.3.0",
"build~=1.2.0",
"bump2version~=1.0.0",
"furo~=2024.1.0",
"isort~=5.10.0",
"matplotlib~=3.8.0",
"mypy~=0.9",
"myst-parser~=2.0.0",
"pylint~=2.17.0",
"pytest-cov~=5.0.0",
"pytest~=7.1.0",
"sphinx-autoapi~=3.0.0",
"Sphinx~=7.2.0",
"sphinxext-opengraph~=0.9.0",
"thx~=0.5.0",
"trufflehog3~=3.0.0",
"twine~=5.0.0",
"types-emoji~=2.1.0",
]
[project.license]
name = "MIT"
file = "LICENSE.md"
content-type = "text/markdown"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
repository = "https://github.com/JoelLefkowitz/miniscons"
homepage = "https://joellefkowitz.github.io/miniscons"
[[project.authors]]
name = "Joel Lefkowitz"
email = "[email protected]"
[tool.metadata]
publisher = "PyPI"
languages = ["Python"]
frameworks = ["SCons"]
paradigms = ["Object oriented"]
lifecycle = "Alpha"
[tool.hatch.build.targets.sdist]
include = ["src/**/*.py"]
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.hatch.build.targets.wheel.sources]
src = "miniscons"
[tool.thx.jobs]
lint = [
"npx cspell . --dot --gitignore",
"pylint src --disable=C0114,C0115,C0116,C0411,C3001",
"mypy -m src --ignore-missing-import",
"trufflehog3",
]
format = [
"black .",
"isort . --no-sections --remove-redundant-aliases",
"npx prettier . --write",
]
test = "pytest . --doctest-modules --cov --cov-report=xml"
docs = "sphinx-build docs/sphinx docs/dist"
[tool.coverage.run]
data_file = "coverage/.coverage"
[tool.coverage.xml]
output = "coverage/cobertura.xml"