-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
42 lines (41 loc) · 1016 Bytes
/
setup.py
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
from setuptools import setup, find_packages
setup(
name="activation_additions",
description=(
"Tools for testing the algebraic value-editing conjecture (AVEC) on"
" language models"
),
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
version="0.2.0",
packages=find_packages(),
install_requires=[
"accelerate",
"jupyter",
"lightning",
"scikit-learn",
"PyYAML",
"circuitsvis",
"transformer_lens",
"torch==1.13.1",
"numpy>=1.22.1",
"pandas>=1.4.4",
"jaxtyping>=0.2.14",
"prettytable>=3.6.0",
"openai>=0.27.2",
"nltk>=3.8.1",
"kaleido>=0.2.1",
"pytest",
"plotly",
"nbformat",
"Ipython",
"ipywidgets",
"tuned_lens",
],
extras_require={
"dev": [
"pytest",
"notebook", # liked by vscode
]
},
)