-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
82 lines (66 loc) · 1.72 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
[project]
name = "MEArec"
version = "1.9.1"
authors = [
{ name="Alessio Buccino", email="alessiop.buccino@gmail.com" },
]
description = "Python toolkit for biophysical simulation of extracellular electrophysiology recordings"
readme = "README.md"
requires-python = ">=3.7,<4.0"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: OS Independent"
]
dependencies = [
"numpy",
"matplotlib",
"click",
"pyyaml",
"h5py",
"joblib",
"scipy",
"elephant",
"lazy_ops",
"MEAutility"
]
[build-system]
requires = ["setuptools>=62.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
MEArec = ["default_params/*.yaml", "cell_models/**"]
[tool.setuptools.exclude-package-data]
MEArec = ["**/tests/test_*"]
[project.scripts]
mearec= "MEArec.cli:cli"
[tool.setuptools.packages.find]
where = ["src"]
include = ["MEArec*"]
namespaces = false
exclude = ["MEArec.*.tests"]
[tool.black]
line-length = 120
[project.urls]
homepage = "https://github.com/SpikeInterface/MEArec"
repository = "https://github.com/SpikeInterface/MEArec"
documentation = "https://mearec.readthedocs.io/"
[project.optional-dependencies]
templates = [
"neuron",
"LFPy"
]
test = [
"pytest",
"pytest-cov"
]
[tool.pytest.ini_options]
filterwarnings =[
'ignore:.*distutils Version classes are deprecated.*:DeprecationWarning',
'ignore:.*the imp module is deprecated in favour of importlib.*:DeprecationWarning',
]