-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
56 lines (50 loc) · 913 Bytes
/
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "bodge"
authors = [
{name = "Jabir Ali Ouassou", email = "[email protected]"},
]
readme = "README.md"
classifiers = [
"License :: OSI Approved :: MIT License",
]
dynamic = ["version", "description"]
requires-python = ">=3.11"
dependencies = [
"beartype",
"numpy",
"scipy",
]
[project.optional-dependencies]
dev = [
"black",
"flit",
"isort",
"pytest",
"pytest-cov",
"quarto",
]
cuda = [
"cupy",
]
all = [
"black",
"cupy",
"flit",
"isort",
"pytest",
"pytest-cov",
"quarto",
]
[tool.black]
line-length = 99
[tool.pytest.ini_options]
addopts = "--cov=bodge --cov-report term-missing"
filterwarnings = [
'ignore:the imp module is deprecated:DeprecationWarning',
]
[tool.pyright]
python.venvPath = "."
python.venv = "venv"