forked from callummcdougall/sae_vis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 914 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name = 'sae-vis',
version = '0.2.15',
packages = find_packages(),
install_requires = [
'torch',
'einops',
'eindex-callum',
'rich',
'transformer_lens',
'datasets',
'dataclasses-json',
'jaxtyping',
'pytest',
],
include_package_data = True,
author = 'Callum McDougall',
author_email = '[email protected]',
description = "Open-source SAE visualizer, based on Anthropic's published visualizer.",
url = 'https://github.com/callummcdougall/sae_vis',
classifiers = [
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
long_description=long_description,
long_description_content_type='text/markdown',
)