-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (56 loc) · 1.73 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "ccn_software_jan_2025"
version = "0.1.0"
authors = [
{name = "Edoardo Balzani", email = "[email protected]"},
{name = "William Broderick", email = "[email protected]"},
{name = "Guillaume Vejo", email = "[email protected]"},
{name = "Sarah Jo Venditto", email = "[email protected]"}
]
description = "Utilities for Jan 2024 CCN software workshop"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["neuroscience", "Poisson-GLM"]
license = { file = "LICENSE" }
classifiers = [
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
# Define dependencies for the project
dependencies = [
'myst-nb',
'myst-parser',
'sphinx',
'sphinx-book-theme',
'sphinx-copybutton',
'sphinx-togglebutton',
'sphinx-design',
'ipywidgets',
'requests',
'jupytext',
'jupyterlab_myst',
'jupyter',
'pillow',
'nemos @ git+https://github.com/flatironinstitute/nemos.git@development',
'pynapple @ git+https://github.com/pynapple-org/pynapple.git@fix_nwb_load_metadata',
'click',
'ipython',
"scikit-learn",
"dandi",
"matplotlib>=3.7",
"seaborn",
"pooch",
"fsspec",
"numba>=0.60",
]
# Configure package discovery for setuptools
[tool.setuptools.packages.find]
where = ["src"] # The directory where package modules are located
include = ["workshop_utils"] # The specific package(s) to include in the distribution