forked from pynapple-org/nwbmatic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
93 lines (84 loc) · 1.99 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "nwbmatic"
version = "0.1.0"
description = "NWB creator from various data streams"
readme = "README.md"
authors = [{ name = "Guillaume Viejo", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
]
keywords = ["neuroscience"]
dependencies = [
"pandas>=1.0.3",
"numpy>=1.17.4",
"scipy>=1.3.2",
"numba>=0.46.0",
"pynapple",
"pynwb",
"tabulate",
"h5py",
"tifffile",
"zarr",
]
requires-python = ">=3.8"
[tool.setuptools.packages.find]
include = ["nwbmatic", "nwbmatic.*"]
[project.optional-dependencies]
dev = [
"black",
"isort",
"pip-tools",
"pytest",
"flake8",
"coverage"
]
allen = ["allensdk>=2.15.1"]
[project.urls]
homepage = "https://github.com/pynapple-org/nwbmatic"
documentation = "https://pynapple-org.github.io/nwbmatic/"
repository = "https://github.com/pynapple-org/nwbmatic"
##########################################################################
# Optional dependencies
##########################################################################
[tool.black]
target-version = ['py36', 'py37', 'py38']
skip-string-normalization = false
exclude = '''
(
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.md
| \.toml
| \.cfg
| \.txt
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| examples
)/
)
'''
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
# [tool.coverage.run]
# omit = [
# "nwbmatic/io/loader_gui.py",
# "nwbmatic/io/ephys_gui.py",
# "nwbmatic/io/ophys_gui.py",
# "nwbmatic/core/jitted_functions.py" # coverage doesn't work with numba
# ]