-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 1.17 KB
/
Copy pathpyproject.toml
File metadata and controls
40 lines (36 loc) · 1.17 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
[build-system]
requires = ["scikit-build-core>=0.10", "nanobind>=2.1"]
build-backend = "scikit_build_core.build"
[project]
name = "glns"
version = "0.1.0"
description = "GLNS: an effective large neighborhood search solver for the Generalized Traveling Salesman Problem (GTSP)"
readme = "README.md"
requires-python = ">=3.9"
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [
{ name = "Stephen L. Smith", email = "stephen.smith@uwaterloo.ca" },
{ name = "Frank Imeson" },
]
keywords = ["GTSP", "TSP", "traveling salesman", "optimization", "metaheuristic"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Mathematics",
]
dependencies = ["numpy>=1.20"]
[project.urls]
Homepage = "https://ece.uwaterloo.ca/~sl2smith/GLNS/"
Reference = "https://github.com/stephenlsmith/GLNS.jl"
[tool.scikit-build]
minimum-version = "0.10"
cmake.version = ">=3.18"
wheel.packages = ["python/glns"]
[tool.scikit-build.cmake.define]
GLNS_BUILD_PYTHON = "ON"
GLNS_BUILD_CLI = "OFF"
GLNS_BUILD_TESTS = "OFF"
GLNS_INSTALL_CPP = "OFF"