-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpyproject.toml
29 lines (24 loc) · 908 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
[tool.poetry]
name = "fireflyalgorithm"
version = "0.4.6"
description = "Implementation of Firefly Algorithm in Python"
authors = ["Iztok Fister Jr. <[email protected]>", "Luka Pečnik <[email protected]>", "Žiga Stupan <[email protected]>"]
keywords = ['computational intelligence', 'firefly algorithm', 'swarm intelligence', 'optimization']
license = "MIT"
readme = "README.md"
homepage = "https://github.com/firefly-cpp/FireflyAlgorithm"
repository = "https://github.com/firefly-cpp/FireflyAlgorithm"
include = [
{ path="LICENSE", format="sdist" },
{ path="Problems.md", format="sdist" }
]
[tool.poetry.dependencies]
python = "^3.9,<3.14"
numpy = "^1.26.1"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.3"
[tool.poetry.scripts]
firefly-algorithm = 'fireflyalgorithm.cli:main'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"