-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
69 lines (66 loc) · 1.63 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "ccn-tutorial"
description = "A high-dimensional view of computational neuroscience"
readme = "README.md"
requires-python = ">=3.10.12"
license = { file = "LICENSE" }
authors = [
{ name = "Atlas Kazemian", email = "[email protected]" },
{ name = "Florentin Guth", email = "[email protected]" },
{ name = "Michael Bonner", email = "[email protected]" },
{ name = "Raj Magesh Gauthaman", email = "[email protected]" },
{ name = "Zirui Chen", email = "[email protected]" },
]
keywords = [
"Bonner Lab",
"Conference on Computational Cognitive Neuroscience (CCN) 2023",
"dimensionality",
"computational neuroscience",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Typing :: Typed",
]
urls = { repository = "https://github.com/BonnerLab/ccn-tutorial" }
dependencies = [
"loguru",
"more-itertools",
"tqdm",
"numpy",
"pandas",
"torch",
"torchvision",
"torchtext",
"portalocker",
"wordcloud",
"xarray",
"netCDF4",
"scipy",
"nilearn",
"umap-learn",
"Pillow",
"matplotlib",
"seaborn",
"scikit-learn",
"nilearn",
"plotly",
"ipykernel",
"jupyter",
"jupyter-cache",
"notebook",
"ipywidgets",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = ["black", "mypy", "types-requests"]
[tool.black]
preview = true