-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
37 lines (29 loc) · 1019 Bytes
/
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
[tool.poetry]
name = "sklearn_nature_inspired_algorithms"
version = "v0.12.0"
description = "Search using nature inspired algorithms over specified parameter values for an sklearn estimator."
license = "MIT"
authors = [
"Timotej Zatko <timi.zatko@gmail.com>"
]
readme = 'README.md' # Markdown files are supported
repository = "https://github.com/timzatko/Sklearn-Nature-Inspired-Algorithms"
homepage = "https://github.com/timzatko/Sklearn-Nature-Inspired-Algorithms"
keywords = ['sklearn', 'scikit-learn', 'nature-inspired-algorithms', 'hyper-parameter-tuning']
# https://python-poetry.org/docs/versions/
[tool.poetry.dependencies]
python = ">= 3.8.1, <= 3.12"
toml = ">= 0.10, < 1.0.0"
scikit-learn = ">= 1.0.2"
numpy = ">= 1.22, < 2.0.0"
matplotlib = ">= 3.5, < 4.0.0"
seaborn = ">= 0.11, < 1.0.0"
pandas = ">= 1.4, < 2.0.0"
niapy = ">= 2.0"
scipy = ">= 1.7.3"
[tool.poetry.dev-dependencies]
flake8 = ">= 6.0"
coverage = ">= 7.0"
[build-system]
requires = ["poetry"]
build-backend = "poetry.masonry.api"