forked from Wood-Dudchenko-lab/woodcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (51 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
54 lines (51 loc) · 1.5 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
[build-system]
requires = ["setuptools>=65.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "woodcode"
version = "0.1.2"
description = "A python package for neural and behavioural data analysis in Wood/Dudchenko lab"
readme = "README.md"
authors = [
{name = "Wood/Dudchenko lab members", email = "[email protected]"},
]
license = {text = "MIT"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
requires-python = ">=3.8"
dependencies = [
"numpy>=1.20.0",
"scipy>=1.7.0",
"matplotlib>=3.4.0",
"pandas>=1.3.0",
"pynwb>=2.0.0",
"openpyxl>=3.0.0",
"hdmf>=3.0.0",
"h5py>=3.0.0",
"pytz>=2021.1",
"pynapple==0.7.1",
"pyyaml>=6.0",
"selenium>=4.0.0",
"seaborn>=0.11.0",
"fmatch>=0.0.9",
"jupyter>=1.1.1",
"ndx-franklab-novela",
"opencv-python",
"spikeinterface",
"neuroconv",
]
[project.urls]
Homepage = "https://github.com/Wood-Dudchenko-lab/woodcode"
"Bug Tracker" = "https://github.com/Wood-Dudchenko-lab/woodcode/issues"
[tool.setuptools.packages.find]
include = ["woodcode", "woodcode.*", "moore_2025"]