-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
29 lines (24 loc) · 931 Bytes
/
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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "jaxns"
version = "2.6.7"
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 = "[email protected]" }]
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" }
dynamic = ["dependencies", "optional-dependencies"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]