-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (40 loc) · 1.13 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "misst"
version = "0.1.2"
description = "Automated murine polysomnogram sleep staging for Python."
readme = "docs/README_PYPI.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [
{name = "Hudson Liu", email = "[email protected]"},
]
keywords = ["misst", "sleep staging", "murine", "polysomnogram", "machine learning"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License"
]
dependencies = [
"keras >= 2.9.0",
"keras_tuner >= 1.1.3",
"matplotlib >= 3.6.2",
"mne >= 1.3.0",
"numpy >= 1.22.3",
"overrides >= 7.3.1",
"pandas >= 1.5.2",
"pyyaml >= 6.0.1",
"scikit_learn >= 1.3.0",
"tensorflow >= 2.9.1",
"tensorflow_addons >= 0.20.0",
"tqdm >= 4.64.1",
"EDFlib-Python >= 1.0.7"
]
[project.urls]
Repository = "https://github.com/Johns-Hopkins-CISRE/MISST"
[project.optional-dependencies]
dev = ["twine>=4.0.2"]