-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
52 lines (46 loc) · 1.46 KB
/
pyproject.toml
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>=61",
"setuptools_scm[toml]>=7",
"ninja>=1.10; sys_platform != 'win32'",
"cmake>=3.21"
]
build-backend = "setuptools.build_meta"
[project]
name = "mmft.simulator"
description = "A simulator for closed channel-based microfluidic devices"
readme = "README.md"
authors = [
{ name = "Michel Takken", email = "[email protected]"}
]
keywords = ["MMFT", "microfluidics", "simulation", "design automation"]
license = { file = "LICENSE" }
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: C++",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
]
requires-python = ">=3.8"
dynamic = ["version"]
[tool.setuptools.packages.find]
where = ["python"]
exclude = ["src*"]
[tool.setuptools_scm]
[tool.cibuildwheel]
build = "cp3*"
skip = "*-musllinux_*"
archs = "auto64"
test-command = "python -c \"from mmft import simulator\""
build-frontend = "build"
[tool.cibuildwheel.macos]
environment = { MACOSX_DEPLOYMENT_TARGET = "10.15" }