-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (66 loc) · 1.9 KB
/
pyproject.toml
File metadata and controls
77 lines (66 loc) · 1.9 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[build-system]
requires = ["setuptools>=77.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "bombast"
version = "0.1.0.dev0"
description = "Validate that Bill-of-Materials components actually work together."
license = "Unlicense"
authors = [{name = "SciJava developers", email = "ctrueden@wisc.edu"}]
readme = "README.md"
keywords = ["bom", "maven", "integration-testing", "validation"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Operating System :: MacOS",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Testing",
]
requires-python = ">=3.10"
dependencies = [
"jgo>=2.1.0",
"rich>=14.2.0",
"rich-click>=1.9.5",
"tomli>=2.0.0; python_version<'3.11'",
]
[dependency-groups]
dev = [
"build",
"mypy",
"pytest",
"ruff",
"validate-pyproject[all]",
]
[project.scripts]
bombast = "bombast.__main__:main"
[project.urls]
homepage = "https://github.com/apposed/bombast"
source = "https://github.com/apposed/bombast"
tracker = "https://github.com/apposed/bombast/issues"
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = false
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[tool.ruff]
line-length = 88
src = ["src", "tests"]
include = ["pyproject.toml", "src/**/*.py", "tests/**/*.py"]
extend-exclude = ["bin", "build", "dist"]
[tool.ruff.lint]
extend-select = ["TC", "UP037"]
extend-ignore = ["E203"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["E402", "F401"]
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning",
]