-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (24 loc) · 880 Bytes
/
pyproject.toml
File metadata and controls
28 lines (24 loc) · 880 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
[build-system]
build-backend = 'mesonpy'
requires = ['meson-python', 'numpy>=2.0.1', 'Cython>=3.0']
[project]
name = 'gomea'
version = '1.0.9'
description = 'Library for the use of various variants of the Gene-pool Optimal Mixing Evolutionary Algorithm (GOMEA).'
readme = 'README.md'
requires-python = '>=3.9'
license = {file = 'LICENSE'}
authors = [
{name = 'Anton Bouter', email = 'Anton.Bouter@cwi.nl'},
]
url = 'https://github.com/abouter/gomea'
dependencies = ['numpy>=1.23.0','tqdm>=4.65.0']
[tool.cibuildwheel.linux]
build = ["cp39-*manylinux*", "cp310-*manylinux*", "cp311-*manylinux*", "cp312-*manylinux*", "cp313-*manylinux*"]
archs = ["auto64"]
[tool.cibuildwheel.macos]
build = ["cp39-*", "cp310-*", "cp311-*", "cp312-*", "cp313-*"]
archs = ["auto64"]
[tool.cibuildwheel.windows]
build = ["cp39-*", "cp310-*", "cp311-*", "cp312-*", "cp313-*"]
archs = ["auto64"]