-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (36 loc) · 791 Bytes
/
pyproject.toml
File metadata and controls
44 lines (36 loc) · 791 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
41
42
43
44
[project]
name = "bicfit"
description = "General purpose exponential function fitting"
keywords = ["fit", "numerics"]
authors = [
{name = "Adrien Bocquet", email = "adrienbocquet38@gmail.com"},
]
dynamic = ["version"]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
dependencies = [
"matplotlib",
"numpy",
"scipy>=1.10.0",
]
[build-system]
requires = [
"hatchling>=1.24",
"hatch-vcs>=0.4",
]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/bicfit/_version.py"
[dependency-groups]
dev = [
"ruff>=0.15.0",
"pytest>=8.0",
"pytest-ordering",
"pytest-sugar",
"pytest-xdist",
]
[project.urls]
Repository = "https://github.com/abocquet/bicfit"