-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #195 from agseaton/add_pyproject_toml
Add pyproject.toml file
- Loading branch information
Showing
7 changed files
with
80 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
[build-system] | ||
build-backend = 'scikit_build_core.build' | ||
requires = ['scikit-build-core', 'numpy >= 1.22, < 2'] | ||
|
||
[project] | ||
name = 'heyoka' | ||
version = '6.1.0' | ||
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]' }, | ||
{ name = 'Dario Izzo' }, | ||
] | ||
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.