-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 1.23 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
[build-system]
requires = [
"scikit-build-core>=0.10",
"pybind11>=2.6",
]
build-backend = "scikit_build_core.build"
[project]
name = "genetic-algorithm-lib"
version = "1.0.1"
description = "Genetic Algorithm framework with C++ core and Python bindings"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "Apache-2.0" }
authors = [{ name = "Rahuldrabit" }]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: C++",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
]
[project.urls]
Homepage = "https://github.com/Rahuldrabit/Genetic_algorithm"
Repository = "https://github.com/Rahuldrabit/Genetic_algorithm"
Issues = "https://github.com/Rahuldrabit/Genetic_algorithm/issues"
[tool.scikit-build]
# Ship a small pure-Python package wrapper + a compiled extension installed by CMake.
#
# - Distribution name (PyPI): genetic-algorithm-lib
# - Import name (Python): genetic_algorithm_lib
wheel.packages = ["python/genetic_algorithm_lib"]
# Safety net: exclude local/dev artifacts from the sdist.
sdist.exclude = [
".venv/**",
".scikit-build/**",
"_skbuild/**",
"build/**",
"dist/**",
]