-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (50 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
52 lines (50 loc) · 1.26 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
[build-system]
requires = ["setuptools>=64", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "pynapple-learn"
version = "0.0.1"
description = "Interactive notebook to learn pynapple"
readme = "README.md"
authors = [
{ name = "Guillaume Viejo"},
{ name = "Edoardo Balzani"},
{ name = "Sarah Jo Venditto"}
]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
keywords = ["neuroscience"]
dependencies = [
"pandas>1.0.3",
"numpy>=1.17.4",
"scipy>=1.3.2",
"matplotlib",
"zarr",
"seaborn",
"tqdm",
"numpydoc",
"sphinx",
"pydata-sphinx-theme",
"sphinx-autodoc-typehints",
"sphinx-copybutton",
"sphinx-design",
"sphinx-issues",
"sphinxcontrib-apidoc",
"myst-parser",
"myst-nb",
"dandi",
"sphinx-autobuild",
"sphinx-contributors",
"scikit-learn",
# "sphinx-exec-code"
]
requires-python = ">=3.8"