-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (52 loc) · 2.05 KB
/
pyproject.toml
File metadata and controls
52 lines (52 loc) · 2.05 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#------------------------------------------------------------------------------------------
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
#------------------------------------------------------------------------------------------
[project]
name = "beeoptimal"
version = "0.1.1"
license = {file = "LICENSE"}
description = "A Python implementation of the Artificial Bee Colony (ABC) optimization algorithm"
keywords = ["metahueristic", "optimization", "artificial bee colony", "swarm intelligence"]
readme = "README.md"
authors = [{ name = "Giulio Fantuzzi", email = "giulio.fantuzzi01@gmail.com" }]
requires-python = ">=3.12.1"
dependencies = [
"numpy >= 1.26.4, <2.0.0",
"plotly >= 5.24.1",
"tqdm >= 4.66.4",
"pillow >= 10.3.0",
"kaleido >= 0.2.1"
]
classifiers = [
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
#------------------------------------------------------------------------------------------
[project.optional-dependencies]
docs = [
"sphinx>=4.0.0",
"sphinx-rtd-theme",
"nbsphinx",
"nbsphinx-link",
"sphinx-rtd-dark-mode"
]
tutorials = [
"ipython >= 8.12.3",
"torchvision >= 0.18.1",
"matplotlib >= 3.8.4",
]
#------------------------------------------------------------------------------------------
[project.urls]
Documentation = "https://beeoptimal.readthedocs.io/en/latest/"
Repository = "https://github.com/giuliofantuzzi/BeeOptimal"
Issues = "https://github.com/giuliofantuzzi/BeeOptimal/issues"
#------------------------------------------------------------------------------------------
[tool.setuptools.packages]
find = { include = ["beeoptimal"] }
#------------------------------------------------------------------------------------------
[tool.setuptools.package-data]
beeoptimal = ["package_assets/*.png"]
#------------------------------------------------------------------------------------------