-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (42 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
50 lines (42 loc) · 1.15 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=64", "wheel", "setuptools_scm[toml]>=3.4"]
[project]
name = "cortado"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "William Fondrie", email = "fondriew@gmail.com" }
]
requires-python = ">=3.13"
dependencies = [
"click>=8.1.8",
"numba>=0.61.2",
"numpy>=2.2.5",
"polars>=1.29.0",
"scipy>=1.15.3",
]
dynamic = ["version"]
license = { text = "Apache-2.0" }
[dependency-groups]
dev = [
"pytest>=8.3.5",
]
[tool.ruff]
line-length = 88
target-version = "py312"
[tool.ruff.lint]
# D213 Multi-line docstring summary should start at the second lin
# D203 1 blank line required before class docstring
# D100 Missing docstring in public module
# D401 First line of docstring should be in imperative mood
ignore = ["D213", "D203", "D100", "D401"]
select = ["E", "F", "W", "C", "I", "D", "UP", "N", "T20"]
[tool.ruff.lint.per-file-ignores]
"*tests/*.py" = ["ANN", "N806", "C408"]
"__init__.py" = ["F401", "D104"]
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages]
find = {namespaces = false}
[tool.setuptools_scm]