-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·89 lines (73 loc) · 2.05 KB
/
pyproject.toml
File metadata and controls
executable file
·89 lines (73 loc) · 2.05 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[build-system]
requires = ["setuptools>=61", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "src/nnsight/_version.py"
[project]
dynamic = ["version"]
name = "nnsight"
authors = [
{ name="Jaden Fiotto-Kaufman", email="jadenfk@outlook.com" },
]
description = "Package for interpreting and manipulating the internals of deep learning models."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT License" }
keywords = ["deep learning", "neural networks", "interpretability", "pytorch", "transformers"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"transformers",
"astor",
"cloudpickle",
"httpx",
"python-socketio[client]",
"pydantic>=2.9.0",
"torch>=2.4.0",
"accelerate",
"toml",
"ipython",
"rich",
"zstandard",
]
[project.optional-dependencies]
test = [
"pytest>=6.0",
"pytest-cov",
]
diffusers = [
"diffusers",
]
vllm = [
"vllm==0.15.1",
"triton==3.5.0",
]
all = ["nnsight[test,diffusers,vllm]"]
[project.urls]
Homepage = "https://github.com/ndif-team/nnsight"
Website = "https://nnsight.net/"
Documentation = "https://nnsight.net/documentation/"
Changelog = "https://github.com/ndif-team/nnsight/CHANGELOG.md"
Repository = "https://github.com/ndif-team/nnsight.git"
"Bug Tracker" = "https://github.com/ndif-team/nnsight/issues"
[tool.setuptools]
include-package-data = true
license-files = ["LICENSE"]
[tool.setuptools.package-data]
nnsight = ["config.yaml"]
# Optional: Code formatting tools configuration
[tool.black]
line-length = 88
target-version = ['py38']
[tool.isort]
profile = "black"