-
Notifications
You must be signed in to change notification settings - Fork 148
/
Copy pathsetup.py
32 lines (30 loc) · 1.15 KB
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='llm-reasoners',
version='1.0.2',
description='A library for advanced reasoning methods with large language models',
packages=find_packages(include=['reasoners', 'reasoners.*']),
# packages=find_packages(exclude=('examples', 'examples.*')),
entry_points={
'console_scripts': ['reasoners-visualizer=reasoners.visualization:main'],
},
install_requires=['tqdm',
'fire',
'numpy',
'scipy',
'torch',
'datasets',
'huggingface_hub',
'transformers',
'sentencepiece',
'openai',
'tarski',
'peft',
'optimum',
'ninja',
'bitsandbytes',
'fairscale',
'google-generativeai',
'anthropic'],
include_package_data=True,
python_requires='>=3.10')