-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (50 loc) · 1.03 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
[project]
name = "kira_llm"
version = "0.2.0"
description = "That's right, I'm Kira ✍️"
license = "MIT"
readme = "README.md"
requires-python ="~=3.10"
authors = [
{name = "Artur A. Galstyan", email = "[email protected]"},
]
dependencies=[
"jax",
"equinox",
"jaxlib",
"jaxtyping",
"tqdm",
"beartype",
"typing_extensions",
"pre-commit",
"loguru",
"nox",
"pytest",
"matplotlib",
"optax",
"jaxonloader",
"fire",
"wandb",
]
[tool.ruff]
extend-include = ["*.ipynb"]
src = []
[tool.ruff.lint]
select = ["E", "F", "I001"]
fixable = ["I001", "F401"]
ignore = ["E402", "E721", "E731", "E741", "F722"]
ignore-init-module-imports = true
[tool.ruff.lint.isort]
combine-as-imports = true
extra-standard-library = ["typing_extensions"]
lines-after-imports = 2
order-by-type = false
[tool.pyright]
reportIncompatibleMethodOverride = true
reportMissingImports = false
include = ["kira", "tests"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["kira"]