-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (58 loc) · 1.77 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
[project]
name = "tridiax"
version = "0.2.1"
description = "Solving tridiagonal systems."
authors = [
{ name = "jaxleyverse", email = "[email protected]"},
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Adaptive Technologies",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"""License :: OSI Approved :: Apache Software License""",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
]
requires-python = ">=3.8"
readme = "README.md"
keywords = ["tridiagonal", "linear algebra", "solver", "jax"]
dependencies = [
"jax",
"numpy",
]
[project.optional-dependencies]
dev = [
"black",
"isort",
"pytest",
]
[project.urls]
source = "https://github.com/jaxleyverse/tridiax"
tracker = "https://github.com/jaxleyverse/tridiax/issues"
[build-system]
requires = ["setuptools>=65", "wheel"]
build-backend = "setuptools.build_meta"
# Package installation configuration
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
include = ["tridiax*"] # package names should match these glob patterns (["*"] by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)
# Pytest configuration
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::PendingDeprecationWarning"
]
testpaths = ["tests"]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"gpu: marks tests that require a gpu (deselect with '-m \"not gpu\"')",
]
xfail_strict = true