-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
53 lines (48 loc) · 1.38 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "somnotate"
dynamic = ["version"]
authors = [
{name = "Paul Brodersen", email = "[email protected]"},
]
description = "Automated polysomnography for experimental animal research"
readme = "README.md"
keywords = [
"polysomnography",
"time-series-analysis",
"linear-discriminant-analysis",
"hidden-markov-model",
"python",
]
license = {text = "GNU General Public License v3 (GPLv3)"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
]
requires-python = ">3.6"
dependencies = [
"numpy",
"matplotlib",
"scikit-learn",
"pomegranate<1.0.0",
]
[project.urls]
Repository = "https://github.com/paulbrodersen/somnotate"
[project.optional-dependencies]
pipeline = [
"six",
"scipy",
"pandas",
"pyedflib",
"lspopt",
]
[tool.setuptools]
packages = ["somnotate"]
[tool.setuptools.dynamic]
version = {attr = "somnotate.__version__"}