-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
36 lines (33 loc) · 1008 Bytes
/
pyproject.toml
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
[project]
name = "psidata"
description = "Lightweight wrapper for managing psiexperiment data"
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE.txt"}
authors = [
{name = "Brad Buran", email="[email protected]"},
{name = "Brad Buran", email="[email protected]"},
{name = "Buran Consulting, LLC", email="[email protected]"}
]
maintainers = [
{name = "Brad Buran", email="[email protected]"},
{name = "Brad Buran", email="[email protected]"},
{name = "Buran Consulting, LLC", email="[email protected]"}
]
dependencies = [
"numpy",
"pandas",
"pyyaml",
]
dynamic = ["version"]
[project.optional-dependencies]
docs = ["sphinx", "sphinx_rtd_theme"]
test = ["pytest", "pytest-console-scripts"]
bcolz-backend = ["bcolz"]
legacy-bcolz-backend = ["blosc"]
zarr-backend = ["zarr"]
[build-system]
requires = ["setuptools>=61.2", "wheel", "setuptools_scm[toml]>=3.4.3"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "psidata/version.py"