summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: b94d957ec8c15431b69e6c6a4093340f9a0a6429 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[project]
name = "transivent"
version = "0.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 = [
    "loguru",
    "matplotlib",
    "numba",
    "Pillow",
    "scipy",
    "scopekit @ git+https://git.samsci.com/cgit.cgi/scopekit",
]

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

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