forked from mjhajharia/transforms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (53 loc) · 1.28 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
[project]
name = "simplex_transforms"
version = "0.1.0.dev0"
description = "(un)constraining transforms for sampling on the simplex"
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE.md"}
keywords = ["simplex", "mcmc", "hmc", "jacobian", "bijection"]
authors = [
{name = "Seth Axen", email = "[email protected]" },
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = []
[project.optional-dependencies]
jax = [
"jax",
"jaxlib",
"jaxtyping",
"tensorflow_probability",
]
workflow = [
"simplex_transforms[jax]",
"arviz",
"bridgestan",
"cmdstanpy",
"matplotlib",
"numpy",
"pandas",
"snakemake",
]
test = [
"simplex_transforms[jax,workflow]",
"pytest",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["simplex_transforms", "simplex_transforms.*"]
[tool.isort]
profile = "black"
[tool.ruff.lint]
ignore = ["F722"]