-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
54 lines (46 loc) · 1.71 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
53
54
[build-system]
requires = ["scikit-build-core", "pybind11"]
build-backend = "scikit_build_core.build"
[project]
name = "musica"
dynamic = ["version"]
readme = "README.md"
description = "MUSICA is a Python library for performing computational simulations in atmospheric chemistry."
long_description = "MUSICA (Multiscale Interface for Chemistry and Aerosols) is a powerful tool for modeling atmospheric chemistry processes. It provides a flexible interface for running simulations and analyzing results."
long_description_content_type = "text/plain"
authors = [
{ name = "Matthew Dawsom", email = "[email protected]" },
{ name = "Jiwon Gim", email = "[email protected]" },
{ name = "David Fillmore", email = "[email protected]" },
{ name = "Kyle Shores", email = "[email protected]" },
]
maintainers = [{ name = "ACOM MUSICA Developers", email = "[email protected]" }]
license = { file = "LICENSE" }
dependencies = [
]
[project.optional-dependencies]
test = [
"numpy",
]
[tool.scikit-build]
cmake.args = [
"-DMUSICA_ENABLE_PYTHON_LIBRARY=ON",
"-DMUSICA_ENABLE_TUVX=OFF",
"-DMUSICA_BUILD_FORTRAN_INTERFACE=OFF",
"-DMUSICA_ENABLE_TESTS=OFF",
"-DCMAKE_BUILD_TYPE=Release"
]
[project.urls]
homepage = "https://wiki.ucar.edu/display/MUSICA/MUSICA+Home"
# dynamically read the version: https://scikit-build-core.readthedocs.io/en/latest/configuration.html#dynamic-metadata
[tool.scikit-build.metadata.version]
provider = "scikit_build_core.metadata.regex"
input = "CMakeLists.txt"
regex = 'musica-distribution VERSION\s+(?P<value>[0-9.]+)'
[[tool.scikit-build.generate]]
path = "musica/_version.py"
template = '''
version = "${version}"
'''
[tool.cibuildwheel.macos.environment]
MACOSX_DEPLOYMENT_TARGET = "10.15"