-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
51 lines (45 loc) · 1.37 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = {find = {}}
[tool.setuptools.dynamic]
version = {attr = "neuroanalysis.__version__"}
[tool.pytest.ini_options]
testpaths = ["neuroanalysis/tests"]
[project]
name = "neuroanalysis"
authors = [
{name="Luke Campagnola", email="lukec@alleninstitute.org"},
]
description = "Functions and modular user interface tools for analysis of patch clamp experiment data."
readme = "README.md"
license = {file="LICENSE.txt"}
keywords=["neuroscience", "analysis", "neurodata", "without", "borders", "nwb"]
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dynamic = ["version"]
dependencies = [
"numpy",
"scipy",
"h5py",
]
[project.optional-dependencies]
"ACQ4" = ["acq4"]
"jit" = ["numba"]
"MIES" = []
"test" = ["pytest"]
"ui" = ["pyqtgraph"]
"neuron_sim" = ["neuron"]
[project.urls]
homepage = "https://github.com/AllenInstitute/neuroanalysis"
issues = "https://github.com/AllenInstitute/neuroanalysis/issues"