forked from bluescarni/heyoka.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (39 loc) · 1.37 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
[build-system]
build-backend = 'scikit_build_core.build'
requires = ['scikit-build-core', 'numpy >= 1.22, < 2']
[project]
name = 'heyoka'
version = '6.1.2'
description = "Python library for ODE integration via Taylor's method and LLVM"
readme = 'README.md'
requires-python = '>=3.5'
dependencies = ['cloudpickle', 'numpy >= 1.22, < 2']
authors = [{ name = 'Francesco Biscarni', email = '[email protected]' }]
license = { text = 'MPL-2.0' }
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python :: 3",
]
keywords = ['science', 'math', 'physics', 'ode']
[project.urls]
Documentation = "https://bluescarni.github.io/heyoka.py/index.html"
Repository = "https://github.com/bluescarni/heyoka.py"
[project.optional-dependencies]
sympy = ["sympy", "mpmath"]
sgp4 = ["skyfield"]
[tool.scikit-build]
# Avoid copying the C++ source files when building
# binary wheels.
wheel.packages = []
# Enable IPO.
cmake.define.HEYOKA_PY_ENABLE_IPO = "ON"