-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
92 lines (75 loc) · 2.18 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[build-system]
requires = ["scikit-build-core", "nanobind"]
build-backend = "scikit_build_core.build"
[project]
name = "kima"
version = "6.2.1"
description = "A data analysis framework for exoplanet detection"
authors = [
{name = "João Faria", email = "[email protected]"}
]
readme = "README.md"
license = {text = "MIT License"}
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"typing_extensions",
"numpy",
"scipy",
"matplotlib",
"corner",
"loguniform",
"kumaraswamy",
"urepr",
"astropy",
"jaxlib",
"jax",
"rebound",
"psutil",
"tinygp",
]
[project.optional-dependencies]
dev = [
"nanobind",
"scikit-build-core[pyproject]",
"mkdocs",
"mkdocstrings[python]",
"mkdocs-autorefs",
"mkdocs-material",
"mkdocs-jupyter",
"mkdocs-git-revision-date-localized-plugin",
]
[project.urls]
Homepage = "http://www.kima.science"
Documentation = "http://www.kima.science/docs/"
Repository = "https://github.com/kima-org/kima"
Issues = "https://github.com/kima-org/kima"
[project.scripts]
kima = "kima.pykima.cli:cli_run"
kima-clean = "kima.pykima.cli:cli_clean"
[tool.scikit-build]
# Protect the configuration against future changes in scikit-build-core
minimum-version = "0.4"
# Setuptools-style build caching in a local directory
build-dir = "build/{wheel_tag}"
# Build stable ABI wheels for CPython 3.12+
wheel.py-api = "cp312"
# The minimum version of CMake to use. If CMake is not present on the system or
# is older than this, it will be downloaded via PyPI if possible. An empty
# string will disable this check.
cmake.minimum-version = "3.17"
# The build type to use when building the project.
# Valid options are: "Debug", "Release", "RelWithDebInfo", "MinSizeRel"
cmake.build-type = "Release"
[tool.cibuildwheel]
# Necessary to see build output from the actual compilation
build-verbosity = 1
# # Run pytest to ensure that the package was correctly built
# test-command = "pytest {project}/tests"
# test-requires = "pytest"
# Needed for full C++17 support
[tool.cibuildwheel.macos.environment]
MACOSX_DEPLOYMENT_TARGET = "10.14"