-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
64 lines (60 loc) · 1.75 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "neuro-analysis-py"
version = "0.0.2"
description = "Analysis of neuroelectrophysiology data in Python."
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "Ryan Harvey", email = "[email protected]" }]
keywords = ["electrophysiology", "neuroscience", "data analysis"]
requires-python = ">=3.8"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"numpy>=1.23.0",
"scipy>=1.9.0",
"matplotlib>=3.7.1",
"scikit-learn>=1.2.2",
"pandas>=1.5.0",
"numba>=0.56.0",
"pillow>=9.3.0",
"tqdm>=4.64.0",
"joblib>=1.2.0",
"dill>=0.3.8",
"seaborn>=0.11.2",
"scikit-image>=0.21.0",
"nelpy @ git+https://github.com/nelpy/nelpy.git",
"lazy-loader>=0.4",
"elephant>=1.1.0",
"neo>=0.13.3",
"quantities>=0.15.0",
"neurodsp>=2.2.1",
"track-linearization>=2.3.1",
"pyFFTW>=0.13.1",
"statsmodels>=0.14.1",
"mkdocs>=1.6.1",
"mkdocs-material>=9.5.34",
"mkdocstrings[python]>=0.26.1",
"mkdocs-gen-files>=0.5.0",
"mkdocs-literate-nav>=0.6.1",
"mkdocs-section-index>=0.3.9",
"mkdocs-include-markdown-plugin>=6.2.2",
"mkdocs-jupyter>=0.24.8",
"mkdocs-minify-plugin>=0.8.0",
]
[project.urls]
"Homepage" = "https://github.com/ryanharvey1/neuro_py/"
[tool.setuptools.package-data]
"*" = ["*"]
[tool.setuptools.packages.find]
include = ['neuro_py']
exclude = ['docs']