-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (52 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
59 lines (52 loc) · 1.31 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
50
51
52
53
54
55
56
57
58
59
[build-system]
requires = [
"setuptools>=45",
"setuptools_scm[toml]>=6.2",
"wheel",
"numpy",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "siffpy/core/_version.py"
[tool.setuptools.packages.find]
exclude = [
"temp_analysis_notebooks*",
".vscode",
"siffreadermodule*",
]
[project]
name = "siffpy"
#version = "0.7.4"
dynamic = ["version"]
readme = "README.md"
description = "A package for reading and analyzing .siff data"
license = {text="GPL-3.0-or-later"}
authors = [
{email = "thornquist@rockefeller.edu"},
{name = "Stephen Thornquist"},
]
requires-python = ">=3.9.0"
dependencies = [
"numpy >= 1.15",
"scipy",
"h5py",
"importlib_resources",
"corrosiffpy",
# "corrosiffpy @ git+https://github.com/MaimonLab/corrosiff-python.git",
# "corrosiffpy @ git+https://github.com/MaimonLab/corrosiff-python.git#egg=dev"
]
[project.optional-dependencies]
# development dependency groups
test = ['pytest', 'dropbox', 'asyncio', 'tqdm', 'aiohttp']
suite2p = ['suite2p @ git+https://github.com/StephenThornquist/suite2p.git']
all = ['siffpy[suite2p, test]']
# pyproject.toml
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]
[tool.cibuildwheel]
# Disable building PyPy wheels on all platforms
skip = "pp*"