-
Notifications
You must be signed in to change notification settings - Fork 27
/
pyproject.toml
86 lines (77 loc) · 1.54 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# pyproject.toml
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "attn_gym"
authors = [{ name = "Driss Guessous", email = "drisspguessous@gmail.com" }]
description = "Helpful tools and examples for working with flex-attention"
readme = "README.md"
dynamic = ["version"]
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
dependencies = [
"torch",
]
[project.optional-dependencies]
dev = [
"pre-commit==3.6.0",
"bumpver",
"pip-tools",
"pytest",
"ruff",
"jsonargparse",
"docstring-parser",
"pytest"
]
viz = [
"matplotlib",
"numpy",
"jsonargparse",
"docstring-parser"
]
# ---------- TOOL CONFIGURATIONS ------------
[tool.hatch.version]
source = "vcs"
# ---------- RUFF ------------
[tool.ruff]
target-version = "py38"
line-length = 99
# Exclude a variety of commonly ignored directories.
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".ipynb_checkpoints",
".mypy_cache",
".nox",
".pants.d",
".pyenv",
".pytest_cache",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
".vscode",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"site-packages",
"venv",
"*.ipynb",
]
[tool.ruff.lint]
ignore = ['E231', 'E731']
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401", "F403"]