-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 921 Bytes
/
Copy pathsetup.py
File metadata and controls
36 lines (33 loc) · 921 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
27
28
29
30
31
32
33
34
35
36
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='transqinterp',
version='0.1.0',
description='Mechanistic intepretatibility tools and experiments for the transitive-property task',
long_description=readme,
author='Sachal Malick',
author_email='sachalmalick@gmail.com',
url='https://github.com/sachalmalick/transq-interp',
license=license,
packages=find_packages(where='src'),
package_dir={'': 'src'},
entry_points={
'console_scripts': [
'experiment = interpexperiments.experiment:main',
'preproc = finetuning.preproc:main'
]
},
install_requires=[
'numpy',
'torch',
'transformer_lens',
'evaluate',
'transformers',
'circuitsvis',
'nltk',
'plotly'
]
)