generated from uwescience/shablona
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (24 loc) · 735 Bytes
/
pyproject.toml
File metadata and controls
28 lines (24 loc) · 735 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
[tool.poetry]
name = "complexpy"
version = "0.1.0"
description = "This package allows to apply several measures of emergence and complexity to either empirical or simulated time-series data, and provide guidance for comparisons among and conclusions about different measures."
authors = ["Nadine Spychala"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "complexpy", from = "src"}
]
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
matlabengine = "~25.1.0"
pandas = "^2.1.3"
numpy = "^1.26.2"
scipy = "^1.11.4"
pytest = "^7.4.3"
seaborn = "^0.13.0"
matplotlib = "^3.8.0"
[tool.poetry.group.dev.dependencies]
jupyter = "^1.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"