-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 744 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 744 Bytes
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
[build-system]
requires = ["setuptools >= 64.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "respiratoryanalysis"
dynamic = ["version"]
readme = "README.md"
license = { file = "LICENSE" }
description = "Short description."
authors = [{ name = "Ana Sofia Carmo", email = "anascacais@gmail.com" }]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
dependencies = [
"numpy",
"pandas",
"scipy",
"plotly",
"biosppy",
"peakutils"
]
[project.urls]
Repository = "https://github.com/anascacais/respiratoryanalysis"
[tool.setuptools.dynamic]
version = {attr = "respiratoryanalysis.__version__"}
[tool.setuptools.packages.find]
where = ["."]
include = ["respiratoryanalysis"]