-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
32 lines (26 loc) · 1.02 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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "jaxns"
version = "2.6.6"
description = "Nested Sampling in JAX"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "Apache Software License 2.0" }
authors = [{ name = "Joshua G. Albert", email = "albert@strw.leidenuniv.nl" }]
keywords = ["bayesian-methods", "scientific-computing", "probabilistic-programming", "nested-sampling", "model-comparison", "bayesian-computing", "jax", "scientific-machine-learning"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent"
]
urls = { "Homepage" = "https://github.com/joshuaalbert/jaxns" }
[project.optional-dependencies]
# Define the extras here; they will be loaded dynamically from setup.py
notebooks = [] # Placeholders; extras will load from setup.py
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]