-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (51 loc) · 1.07 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "statax"
version = "0.0.1"
description = "Yet another stateful library for JAX."
readme = "README.md"
requires-python =">=3.9"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
]
authors = [
{name = "Oliver Neill", email = "[email protected]"},
]
urls = {repository = "https://github.com/odneill/statax"}
dependencies = [
"jax>=0.4.13",
]
[packages.find]
where = ["src"]
include = ["statax*"]
[tool.ruff]
preview = true
exclude = [
".git",
"dev",
"__pycache__",
]
line-length = 88
indent-width = 2
select = [
"B9", # raise full stack traces, and strict zip
"C", # mccabe complexity, flake comprehensions
"E",
"F",
"I",
"W", # code style warnings
"YTT",
]
ignore = [
"E111", # Indentation not multiple 4
"E114", # Indentation not multiple 4 in comments
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"