-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathsetup.py
59 lines (57 loc) · 1.56 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
56
57
58
59
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='ScienceDiscovery',
version='0.1.0',
author='Markus J. Buehler',
packages=find_packages(),
install_requires=[
'numpy',
'networkx',
'matplotlib',
'pandas',
'transformers>=4.39',
'pyautogen>=0.2.28',
'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',
'weasyprint',
'llama-index-embeddings-huggingface',
'langchain-community',
],
description='ScienceDiscovery: Use LLM-based multi-agent system to reason over graphs and generate novel research ideas.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/lamm-mit/SciAgentsDiscovery',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.11'
],
python_requires='>=3.10',
)