forked from TransformerLensOrg/TransformerLens
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 640 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 640 Bytes
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
from setuptools import setup
setup(
name="transformer_lens",
version="0.1.0",
packages=["transformer_lens"],
license="LICENSE",
description="An implementation of transformers tailored for mechanistic interpretability.",
long_description=open("README.md").read(),
install_requires=[
"einops",
"numpy",
"torch",
"datasets",
"transformers",
"tqdm",
"pandas",
"datasets",
"wandb",
"fancy_einsum",
"rich",
"accelerate",
"typing-extensions",
],
extras_require={"dev": ["pytest", "mypy", "pytest-cov"]},
)