-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (64 loc) · 1.76 KB
/
pyproject.toml
File metadata and controls
72 lines (64 loc) · 1.76 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "model-garage"
version = "0.1.0"
description = "Open the hood on neural networks. Component-level model surgery, analysis, and composition."
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10"
authors = [
{ name = "Model Garage Contributors" },
]
keywords = ["pytorch", "transformers", "model-surgery", "interpretability", "SAE", "neural-networks"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"torch>=2.0",
"transformers>=4.30",
"rich>=13.0",
"typer>=0.9",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov",
"ruff",
"mypy",
]
dashboard = [
"textual>=0.40",
]
docs = [
"mkdocs-material>=9.5",
"mkdocstrings[python]>=0.24",
"pymdown-extensions>=10.0",
]
all = [
"model-garage[dev,dashboard,docs]",
]
[project.scripts]
garage = "model_garage.cli.app:app"
[project.urls]
Homepage = "https://github.com/Lumi-node/model-garage"
Documentation = "https://lumi-node.github.io/model-garage/"
Repository = "https://github.com/Lumi-node/model-garage"
Issues = "https://github.com/Lumi-node/model-garage/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/model_garage"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B"]
[tool.pytest.ini_options]
testpaths = ["tests"]