-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (26 loc) · 897 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (26 loc) · 897 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "lab-knapsack"
version = "1.0.0"
description = "LAB (Leader-Advocate-Believer) metaheuristic for single and multidimensional 0-1 knapsack problems"
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "Mustafa Poonawala" }]
requires-python = ">=3.9"
dependencies = ["numpy>=1.21"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Mathematics",
]
[project.optional-dependencies]
notebooks = ["pandas", "matplotlib", "seaborn", "jupyter"]
dev = ["pytest"]
[project.scripts]
lab-knapsack = "lab_knapsack.cli:main"
[project.urls]
Repository = "https://github.com/mustafa-droid18/Solving-the-0-1-Knapsack-Problem-Using-the-LAB-Algorithm"
[tool.setuptools]
packages = ["lab_knapsack"]