-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
84 lines (72 loc) · 1.82 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
[build-system]
requires = ["pip>=21.3", "setuptools>=65.6.3"]
[project]
name = "lussac"
version = "2.0.0b6.post1"
authors = [
{name="Aurélien Wyngaard", email="[email protected]"}
]
description = "Python package for automatic post-processing and merging of multiple spike-sorting analyses."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"networkx >= 3.0",
"numpy >= 1.23",
"pandas >= 1.4.4",
"scikit-learn >= 1.1.0",
"scipy >= 1.9",
"plotly >= 5.8.2",
"kaleido",
"jsmin >= 3.0",
"numba >= 0.56.2",
"tqdm >= 4.64.0",
"requests >= 2.28.0",
"overrides >= 7.3.1",
"psutil",
"spikeinterface >= 0.101.0rc0"
]
[project.scripts]
lussac = "lussac.main:main"
[project.optional-dependencies]
dev = [
"pytest>=7.1.3",
"pytest-cov>=4.0.0",
"matplotlib",
"hdbscan>=0.8.33", # 0.8.31/32 crash.
"zarr>=2.13.0",
"wavpack-numcodecs>=0.1.2",
"sphinx>=7.0.1",
"sphinxemoji>=0.2.0",
"sphinx-rtd-theme>=1.3.0"
]
[project.urls]
homepage = "https://github.com/BarbourLab/lussac"
repository = "https://github.com/BarbourLab/lussac"
documentation = "https://lussac.readthedocs.io/"
changelog = "https://github.com/BarbourLab/lussac/releases"
[tool.coverage.run]
data_file = "tests/.coverage"
source = ["src/lussac/"]
[tool.coverage.report]
exclude_lines = [
# Have to re-enable the standard pragma.
"pragma: no cover",
# Don't complain about abstract methods.
"@(abc.)?abstractmethod",
# Numba code isn't correctly checked for coverage.
"@numba.jit"
]
[tool.coverage.html]
directory = "tests/coverage_html_report"
[tool.coverage.xml]
output = "tests/coverage.xml"
[tool.pytest.ini_options]
cache_dir = "tests/.pytest_cache"
minversion = "7.1.3"
python_files = "test_*.py"
python_functions = "test_*"
testpaths = ["tests/"]
[tool.setuptools.packages.find]
where = ["src"]
include = ["lussac*"]
namespaces = false