-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
87 lines (77 loc) · 2.14 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[build-system]
requires = ["setuptools>=40.8.0", "wheel", "setuptools_scm[toml]>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "PyFinitDiff"
dynamic = ["version"]
description = "A package for generating finite-difference matrices, particularly suited for physics and engineering applications."
license = {file = "LICENSE"}
readme = "README.rst"
requires-python = ">=3.10"
authors = [{ name="Martin Poinsinet de Sivry-Houle", email="martin.poinsinet.de.sivry@gmail.com"}]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research"
]
keywords = ["finite-difference", "solving", "linear algebra", "physics", "matrix", "engineering"]
dependencies = [
"scipy ~=1.14",
"pydantic ~=2.9",
"numpy >=1.26,<3.0",
"MPSPlots",
"tabulate ~=0.9"
]
[project.urls]
Homepage = "https://github.com/MartinPdeS/PyFinitDiff"
Documentation = "https://martinpdes.github.io/PyFinitDiff/"
Repository = "https://github.com/MartinPdeS/PyFinitDiff.git"
[tool.setuptools_scm]
write_to = "PyFinitDiff/_version.py"
version_scheme = "post-release"
local_scheme = "no-local-version"
[project.optional-dependencies]
testing = [
"pytest >=7.4,<9.0",
"pytest-cov >=2,<7",
"pytest-json-report ~=1.5",
"coverage ~=7.6"
]
documentation = [
"numpydoc ~=1.8",
"sphinx >=6",
"sphinx-gallery ~=0.17",
"sphinx-rtd-theme ~=3.0",
"pydata-sphinx-theme ~=0.15"
]
dev = [
"flake8 ==7.1.1",
]
[tool.pytest.ini_options]
minversion = "6.0"
xfail_strict = true
log_cli_level = "INFO"
testpaths = ["tests/"]
addopts = [
"-v",
"-rA",
"-rw",
"--cov=PyFinitDiff",
"--cov-report=html",
"--cov-report=term"
]
[tool.coverage.run]
source = ["PyFinitDiff"]
omit = [
"*/__init__.py",
"*/_version.py",
"*/directories.py"
]
branch = true
relative_files = true