-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
101 lines (91 loc) · 2.53 KB
/
pyproject.toml
File metadata and controls
101 lines (91 loc) · 2.53 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[build-system]
requires = ["setuptools", "cython", "numpy", "packaging"]
build-backend = "setuptools.build_meta"
[project]
name = "scikit-sundae"
readme = "README.md"
dynamic = ["version"]
requires-python = ">=3.10,<3.15"
license = "BSD-3-Clause"
license-files = ["LICENSE*"]
description = "Python bindings to SUNDIALS differential algebraic equation solvers."
keywords = ["sundials", "dae", "ode", "integrator", "ivp", "cvode", "ida"]
authors = [
{ name = "Corey R. Randall" },
{ email = "corey.r.randall@gmail.com" },
]
maintainers = [
{ name = "Corey R. Randall" },
{ email = "corey.r.randall@gmail.com" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = ["numpy", "scipy"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "sksundae.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 80
exclude = ["build", "docs", "images", "reports", "C_programs"]
[tool.ruff.lint]
preview = true
select = [
"E", # All pycodestyle errors
"W", # All pycodestyle warnings
"F", # All pyflakes errors
"B", # All flake8-bugbear checks
"D", # All pydocstyle checks
]
extend-select = [
"E302", "E305", # Expected blank lines (requires preview=true, above)
]
ignore = [
"B007", "B009", "B010", "B028", "B905",
"D1", "D203", "D205", "D212", "D400", "D401", "D415",
"E201", "E202", "E226", "E241", "E731",
]
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.ruff.lint.per-file-ignores]
"tests/**/*" = ["D"]
[project.optional-dependencies]
docs = [
"sphinx",
"myst-nb",
"matplotlib",
"sphinx-design",
"sphinx-autoapi",
"sphinx-copybutton",
"pydata-sphinx-theme",
]
tests = [
"pandas",
"pytest",
"pytest-cov",
"pytest-html",
"pytest-xdist",
]
dev = [
"nox",
"ruff",
"codespell",
"genbadge[all]",
"scikit-sundae[docs,tests]",
]
[project.urls]
Homepage = "https://github.com/NatLabRockies/scikit-sundae"
Documentation = "https://scikit-sundae.readthedocs.io/"
Repository = "https://github.com/NatLabRockies/scikit-sundae"
Issues = "https://github.com/NatLabRockies/scikit-sundae/issues"