-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (68 loc) · 1.6 KB
/
Copy pathpyproject.toml
File metadata and controls
78 lines (68 loc) · 1.6 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "perphil"
version = "0.1.0"
description = "Stabilized FEM to solve double porosity/permeability problems"
readme = "README.md"
keywords = ["double porosity/permeability", "finite element method"]
requires-python = ">=3.10"
license = "MIT"
authors = [
{ name = "Diego Volpatto", email = "volpatto@lncc.br" }
]
dependencies = [
"numpy",
"scipy",
"notebook",
"attrs",
"matplotlib",
"pandas",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering"
]
[project.urls]
Homepage = "https://github.com/volpatto/perphil"
Repository = "https://github.com/volpatto/perphil"
Issues = "https://github.com/volpatto/perphil/issues"
[project.optional-dependencies]
dev = [
"pre-commit",
"rich",
"invoke",
"nb-clean",
"jupytext",
"ruff",
"mypy",
"codespell",
"pytest",
"coverage",
"pytest-cov",
"pytest-regressions",
"pytest-xdist",
"diff-cover",
]
[tool.setuptools]
# map the “root” of all your packages to src/
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
# look under src/ for any packages matching "mypackage*"
where = ["src"]
include = ["perphil*"]
[tool.pytest.ini_options]
minversion = "7.0"
testpaths = [
"src",
]
addopts = "-q -v"
markers = [
"regression: regression tests using pytest-regressions",
]
[tool.coverage.run]
# Ensure coverage stores relative paths so tools like python-coverage-comment-action
# can parse data generated in CI checkouts
relative_files = true