-
Notifications
You must be signed in to change notification settings - Fork 106
/
pyproject.toml
70 lines (63 loc) · 1.71 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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "blackjax"
authors= [{name = "The Blackjax team", email = "[email protected]"}]
description = "Flexible and fast sampling in Python"
requires-python = ">=3.9"
keywords=[
"probability",
"machine learning",
"statistics",
"mcmc",
"sampling",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Education",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
]
dependencies = [
"fastprogress>=1.0.0",
"jax>=0.4.16",
"jaxlib>=0.4.16",
"jaxopt>=0.8",
"optax>=0.1.7",
"typing-extensions>=4.4.0",
]
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/blackjax-devs/blackjax"
documentation = "https://blackjax-devs.github.io/blackjax/"
repository = "https://github.com/blackjax-devs/blackjax"
[project.license]
text="Apache License 2.0"
files=["LICENSE"]
[project.readme]
file="README.md"
content-type = "text/markdown"
[tool.setuptools]
platforms = [
"Linux",
"Mac OS-X",
"Unix",
]
[tool.setuptools.packages.find]
exclude = [
"tests",
"tests.*",
]
[tool.setuptools_scm]
write_to = "blackjax/_version.py"