-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 857 Bytes
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 857 Bytes
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
[project]
name = "libeq"
version = "0.4.2"
description = "Library for solving equilibrium in solution problems"
authors = [{name="Lorenzo Castellino", email="castellino96@gmail.com"},
{name="Salvador Blasco", email="salvador.blasco@uv.es"}]
readme = "README.md"
# packages = [{ include = "libeq", from = "src" }]
requires-python = ">= 3.10"
dependencies = [
"numpy",
"pandas",
"pydantic>=2.12.5",
"pydantic-numpy>=8.0.1",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.mypy]
mypy_path = "src"
ignore_missing_imports = true
check_untyped_defs = true
[project.optional-dependencies]
dev = [
"numpy>=1.2",
"pytest>=8.4",
]
[tool.pytest]
addopts = ["-ra", "-q"]
minversion = "8.0"
testpaths = [ "tests" ]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
[pytest]
pythonpath = ["../src"]