-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
49 lines (42 loc) · 1.1 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
[project]
name = "navani"
dynamic = ["version"]
description = "Package for processing and plotting echem data from cyclers"
authors = [
{ name = "Ben Smith", email = "ben.ed.smith2@gmail.com" }
]
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
dependencies = [
"numpy ~= 1.26, <2",
"pandas[excel] ~= 2.2, <3",
"scipy ~= 1.15, <2",
"datalab-org-galvani >= 0.5.0",
"matplotlib ~=3.10, <4",
"NewareNDA >= 2024.8.1",
"requests ~= 2.32, <3",
]
[project.optional-dependencies]
parquet = ["pyarrow >= 10.0"]
[project.urls]
Homepage = "https://github.com/be-smith/navani"
Issues = "https://github.com/be-smith/navani/issues"
Documentation = "https://be-smith.github.io/navani/"
[tool.setuptools.packages.find]
where = ["src"]
[build-system]
requires = ["setuptools >= 72", "setuptools_scm ~= 8.1"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
fallback_version = "0.0.0"
version_scheme = "post-release"
[dependency-groups]
dev = [
"ipykernel>=6.29.5",
"pytest",
"pytest-dotenv",
]
[tool.pytest.ini_options]
addopts = "-ra"
testpaths = ["tests"]