forked from probcomp/hfppl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (25 loc) · 776 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
import setuptools
from setuptools import setup
setup(
name='hfppl',
version='0.1.0',
description='Probabilistic programming with HuggingFace Transformer models',
url='https://github.com/probcomp/hfppl',
author='Alex Lew',
author_email='alexlew@mit.edu',
license='MIT',
packages=setuptools.find_packages(),
install_requires=['torch',
'numpy',
'transformers',
'bitsandbytes',
'accelerate',
'sentencepiece',
'networkx',
'matplotlib',
'sentence_transformers',
],
classifiers=[
'Programming Language :: Python :: 3.10',
],
)