-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (27 loc) · 960 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
30
31
32
[project]
name = "fenbux"
version = "0.1.0"
description = "A Simple Statistical Distribution Library In JAX"
readme = "README.md"
requires-python ="~=3.9"
license = {file = "LICENSE"}
authors = [
{name = "Yaobo Jia", email = "leojia2001@gmail.com"},
]
keywords = ["jax", "statistics", "probability", "distribution"]
urls = {repository = "https://github.com/JiaYaobo/fenbux" }
dependencies = ["jax>=0.4.18", "jaxtyping>=0.2.20", "equinox>=0.10.11", "typing_extensions>=4.5.0", "tensorflow-probability>=0.20.1", "fenbux-plum-dispatch>=0.0.2"]
[tool.ruff]
select = ["E", "F", "I001"]
ignore = ["E402", "E721", "E731", "E741", "F722", "E701", "E501", "F401"]
ignore-init-module-imports = true
[tool.ruff.isort]
combine-as-imports = true
lines-after-imports = 2
extra-standard-library = ["typing_extensions"]
order-by-type = false
[tool.pyright]
reportIncompatibleMethodOverride = true
include = ["fenbux", "tests"]
[tool.hatch.build]
include = ["fenbux/*"]