-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
79 lines (70 loc) · 1.69 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
[project]
name = "hybrid_template_library"
version = "0.1.0"
authors = [
{ name = "Alessio Buccino", email = "alessiop.buccino@gmail.com" },
{ name = "Samuel Garcia", email = "sam.garcia.die@gmail.com" },
{ name = "Heberto Mayorquin", email = "h.mayorquin@gmail.com" },
]
description = "Python toolkit for analysis, visualization, and comparison of spike sorting output"
readme = "README.md"
requires-python = ">=3.11,<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 = [
"spikeinterface >= 0.101",
"MEArec",
"tqdm",
"pynwb>=2.8",
"remfile==0.1",
"dandi==0.62.2",
"boto3==1.34",
"ONE-api==2.7",
"ibllib==2.36",
"s3fs==2024.6",
]
[project.urls]
repository = "https://github.com/SpikeInterface/hybrid_template_library"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch]
# Specify the directories to include in the build
sources = ["python"]
# Optional: Specify the files to include in the build
[tool.hatch.build.targets.sdist]
include = [
"python/**", # Include all files in the python directory
"LICENSE",
"README.md",
]
[tool.hatch.build.targets.wheel]
include = [
"python/**", # Include all files in the python directory
"LICENSE",
"README.md",
]
[tool.black]
line-length = 128
target-version = ['py37', 'py38', 'py39']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''