-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (35 loc) · 1.34 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "jax_chmc"
dynamic = ["version"]
description = "An implementation of a family of MCMC methods on implicitly defined manifolds"
authors = [{name="Krzysztof Rusek",email="[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["jax", "distribution","MCMC"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
]
requires-python = ">=3.10"
dependencies=["jax>=0.4.25","tensorflow-probability[jax] >= 0.23.0",'jaxtyping>=0.2.28','diffrax>=0.5.0']
[project.urls]
Homepage = "https://github.com/krzysztofrusek/jax_chmc"
[tool.hatch.version]
path = "jax_chmc/__init__.py"
[tool.hatch.envs.default]
dependencies=["pytest","jaxlib>=0.4.25","seaborn"]
path='./venv'
[tool.hatch.envs.default.scripts]
test = "pytest {args:tests}"
getref = "curl -O https://www.cs.toronto.edu/~mbrubake/projects/CHMC.tar.gz"