-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
54 lines (48 loc) · 1.51 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
[project]
name = "odrpack"
dynamic = ["version"]
description = "Package for weighted orthogonal distance regression (ODR)."
requires-python = ">= 3.10"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Hugo Vale", email = "[email protected]" },
]
keywords = ["regression", "statistics", "mathematics"]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
]
dependencies = ['numpy']
[project.urls]
Repository = "https://github.com/HugoMVale/odrpack-python"
Documentation = "https://hugovale.github.io/odrpack-python/"
[project.optional-dependencies]
test = ["pytest", "pytest-cov"]
docs = [
"mkdocs-material",
"mkdocstrings-python",
"mkdocs-jupyter",
"black",
"matplotlib",
]
[build-system]
build-backend = "mesonpy"
requires = ["meson-python>=0.15.0"]
[tool.pytest.ini_options]
norecursedirs = ["extern", "subprojects"]
addopts = "-v -s"
[tool.coverage.run]
source = ["src"]
branch = true