-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (44 loc) · 1.32 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
[tool.poetry]
name = "wslfp"
version = "0.2.2"
description = "Weighted Sum Local Field Potentials - Implementation of the proxy method for point neurons from Mazzoni, Lindén et al., 2015"
authors = [
"Kyle Johnsen <[email protected]>",
"Olivia Klemmer <[email protected]>",
"Chuyu (Alissa) Wang <[email protected]>",
"Aarav Shah <[email protected]>",
]
repository = "https://github.com/siplab-gt/wslfp"
license = "MIT"
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Physics",
]
include = ["wslfp/*"]
[tool.poetry.dependencies]
python = "^3.9"
scipy = "^1.7"
numpy = "^1.16"
matplotlib = "^3.4"
attrs = "^23.2.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.0"
ruff = "^0.1.2"
nbdev = "^2.3.12"
brian2 = "^2.5.4"
nbmake = "^1.5.0"
jupyter = "^1.0.0"
pytest-xdist = "^3.5.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "-q --nbmake"
testpaths = ["tests", "README.ipynb", "notebooks/stepwise.ipynb"]