summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml23
1 files changed, 23 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..b94d957
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,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"]
+