-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
95 lines (87 loc) · 2.12 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
88
89
90
91
92
93
94
95
[build-system]
requires = [
"setuptools>=61.2",
]
build-backend = "setuptools.build_meta"
[project]
name = "fronts"
authors = [
{ name = "Gabriel S. Gerlero", email = "[email protected]" },
]
description = "Numerical library for nonlinear diffusion problems in semi-infinite domains"
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries",
"Operating System :: OS Independent",
]
requires-python = ">=3.7"
dependencies = [
"scipy>=1.4.0,<2",
"numpy>=1.25.0,<3; python_version>='3.11'",
"numpy>=1,<3",
"sympy==1.*",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/gerlero/fronts"
Repository = "https://github.com/gerlero/fronts"
Documentation = "https://fronts.readthedocs.io"
Changelog = "https://github.com/gerlero/fronts/blob/main/CHANGELOG.md"
[project.optional-dependencies]
examples = ["matplotlib==3.*"]
lint = ["ruff"]
test = [
"pytest>=7,<9",
"pytest-cov",
"fronts[examples]",
]
doc = [
"sphinx>=5,<9",
"sphinx_rtd_theme",
]
dev = [
"fronts[examples]",
"fronts[lint]",
"fronts[test]",
"fronts[doc]",
]
[tool.setuptools]
packages = ["fronts"]
[tool.setuptools.dynamic]
version = {attr = "fronts.__version__"}
[tool.ruff.lint]
extend-select = ["ALL"]
extend-ignore = [
"ANN",
"ARG001",
"C901",
"COM812",
"E501",
"FBT002",
"ISC001",
"N",
"NPY201",
"PLR0912",
"PLR0913",
"PLR0915",
"PLR2004",
"PYI",
"S101",
"SIM105",
"T201",
]
[tool.ruff.lint.pydocstyle]
convention = "numpy"