-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (49 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
57 lines (49 loc) · 1.42 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
52
53
54
55
56
57
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "np_utils"
version = "0.1.0"
requires-python = ">=3.11"
authors = [
{name = "Cyril Achard", email = "cyril.achard@finalspark.com"}
]
readme = "README.md"
license = {file = "LICENSE"}
description = "A collection of utilities for the FinalSpark Neuroplatform"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"pandas",
"numba",
]
[tool.setuptools.packages.find]
where = ["src"]
include = [
"np_utils",
]
[tool.setuptools.package-data]
np_utils = [
"MEA_schema.png",
]
[project.urls]
Homepage = "https://github.com/FinalSpark-np/np-utils"
Documentation = "https://finalspark-np.github.io/np-docs/welcome.html#navigation"
Source = "https://github.com/FinalSpark-np/np-utils"
Tracker = "https://github.com/FinalSpark-np/np-utils/issues"
[project.optional-dependencies]
all = ["matplotlib", "seaborn", "scipy", "scikit-learn", "numba", "tqdm", "joblib", "h5py", "Pillow", "plotly", "nbformat"]
SPL = ["plotly", "Pillow", "tqdm", "nbformat"]
SSG = ["scikit-learn", "matplotlib", "seaborn", "tqdm", "joblib"]
RRL = ["h5py"]
CCM = ["matplotlib", "seaborn", "numba", "tqdm"]
SSN = [
"matplotlib",
"tqdm",
"seaborn",
"np_utils[SPL] @ git+https://github.com/FinalSpark-np/np-utils.git"
]