-
Notifications
You must be signed in to change notification settings - Fork 50
/
setup.py
55 lines (53 loc) · 1.4 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
from setuptools import setup, find_packages
# It's a good practice to read long descriptions outside the setup function
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='GraphReasoning',
version='0.2.0',
author='Markus J. Buehler',
author_email='[email protected]',
packages=find_packages(),
install_requires=[
'numpy',
'networkx',
'matplotlib',
'pandas',
'transformers>=4.39',
'powerlaw',
'markdown2',
'pdfkit',
'bitsandbytes',
'peft',
'accelerate',
'torch',
'torchvision',
'torchaudio',
'huggingface_hub',
'langchain',
'pyvis',
'yachalk',
'pytesseract',
'llama-index',
'tqdm',
'ipython',
'scikit-learn',
'scipy',
'seaborn',
'uuid',
'pdfminer.six',
'community',
'guidance',
'python-louvain',
'wkhtmltopdf'
],
description='GraphReasoning: Use LLM to reason over graphs, combined with multi-agent modeling.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/lamm-mit/GraphReasoning',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.11'
],
python_requires='>=3.10',
)