-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 939 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (31 loc) · 939 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
[tool.poetry]
name = "NiaAML-GUI"
version = "0.4.3"
description = "GUI for NiaAML Python package"
license = "MIT"
authors = ["Luka Pečnik <lukapecnik96@gmail.com>"]
keywords = ['classification', 'NiaPy', 'NiaAML', 'scikit-learn', 'nature-inspired algorithms', 'feature selection', 'preprocessing']
homepage = "https://github.com/firefly-cpp/NiaAML-GUI"
repository = "https://github.com/firefly-cpp/NiaAML-GUI"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<3.14"
niapy = "^2.5.2"
QtAwesome = "^1.2.3"
niaaml = "^2.1.2"
scikit-learn = "^1.6.1"
pyqt6 = "^6.6.0"
pytest-qt = "^4.5.0"
pyqt-feedback-flow = "^0.3.5"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
coveralls = "^3.3.1"
black = "^23.11.0"
autoflake = "^2.2.1"
pre-commit = "^3.5.0"
sphinx = "<8.0.0"
[tool.poetry.scripts]
NiaAML-GUI = 'niaaml_gui.main:run'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"