-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (61 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
71 lines (61 loc) · 1.34 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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "PACKAGE_NAME"
version = "0.0.1"
description = "DESCRIPTION"
authors = [
{ name = "Joshua C. Macdonald", email = "jmacdo16@jh.edu" },
]
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.11"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = []
[project.optional-dependencies]
test = [
"pytest>=8.1",
"pytest-cov>=6.0",
]
dev = [
"mypy>=1.18",
"ruff>=0.13",
"pytest>=8.1",
"pytest-cov>=6.0",
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff.format]
docstring-code-format = true
docstring-code-line-length = 72
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"COM812",
"CPY001",
"D203",
"D212",
"PLR2004",
]
[tool.ruff.lint.per-file-ignores]
"tests/**/*" = ["INP001", "S101"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.mypy]
strict = true
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"