-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 824 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (32 loc) · 824 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
34
35
36
37
[tool.poetry]
name = "eco-features"
version = "1.0"
description = "ML test to develop evolution constructed features"
authors = ["physici"]
readme = "README.md"
packages = [{include = "eco_features"}]
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
scikit-image = ">=0.20.0"
scikit-learn = "^1.3.0"
numpy = ">=1.24.3"
matplotlib = ">=3.7.1"
scipy = ">=1.10.1"
pandas = "^2.2.1"
[tool.poetry.group.dev.dependencies]
spyder-kernels = ">2.5"
pylsp-mypy = "^0.6.5"
mypy = "<=1.3.0"
[tool.pylsp-mypy]
enabled = true
live_mode = false
dmypy = true
strict = true
[tool.mypy]
# allow_untyped_globals = true
allow_redefinition = true
ignore_missing_imports = true
ignore_missing_imports_per_module = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"