aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 69cd1c97cc2399b8d33f86ab310ea4c30ca0a57e (plain)
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
[project]
name = "transivent"
version = "2.1.0"
description = "High-level analysis and plotting for transient events."
license = { file = "LICENSE" }
authors = [{ name = "Sam Scholten", email = "s.scholten@uq.edu.au" }]
requires-python = ">=3.8"
dependencies = [
    "joblib",
    "matplotlib",
    "numba",
    "Pillow",
    "scipy",
    "scopekit @ git+https://git.samsci.com/cgit.cgi/scopekit@main",
]

[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[tool.setuptools.packages.find]
where = ["src"]

[dependency-groups]
dev = [
    "pytest>=8.3.5",
]