-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
28 lines (27 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
from setuptools import setup, find_packages
setup(
name="transpector",
version="0.1.6",
author="Rob Kopel",
license="LICENSE",
description="Visually inspect, analyse and debug transformer models. Aimed at reducing cycle times for interpretability research and lowering the barrier to entry.",
long_description=open("README.md").read(),
long_description_content_type='text/markdown',
install_requires=[
"fastapi",
"uvicorn[standard]",
"transformer_lens",
"circuitsvis",
"einops",
"fancy_einsum",
"torchtyping",
"jupyterlab",
"nbclient",
"websockets",
"jaxtyping"
],
entry_points={"console_scripts": ["transpector=transpector.__main__:cli"]},
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
include_package_data=True,
setup_requires=['wheel']
)