-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
83 lines (78 loc) · 2.44 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
from setuptools import setup, find_packages
def get_version():
version = {}
with open("lattereview/_version.py", "r") as fh:
exec(fh.read(), version)
return version["__version__"]
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="lattereview",
version=get_version(),
author="Pouria Rouzrokh",
author_email="[email protected]",
description="A framework for multi-agent review workflows using large language models",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/PouriaRouzrokh/LatteReview",
packages=find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
python_requires=">=3.9",
install_requires=[
"litellm>=1.55.2",
"nest-asyncio>=1.6.0",
"ollama>=0.4.4",
"openai>=1.57.4",
"pandas>=2.2.2",
"pydantic>=2.10.3",
"python-dotenv>=1.0.1",
"tokencost>=0.1.17",
"tqdm>=4.67.1",
],
extras_require={
"dev": [
"black>=24.10.0",
"flake8>=7.1.1",
"ipykernel>=6.29.5",
"openpyxl>=3.1.5",
"pillow>=11.0.0",
"matplotlib>=3.9.4",
"networkx>=3.2.1",
"pyvis>=0.3.2",
"scikit-learn>=1.6.0",
],
"docs": [
"mkdocs>=1.5.0",
"mkdocs-material>=9.0.0",
"mkdocstrings>=0.24.0",
"mkdocstrings-python>=1.7.0",
"mkdocs-gen-files>=0.5.0",
"mkdocs-literate-nav>=0.6.0",
],
"all": [
"black>=24.10.0",
"flake8>=7.1.1",
"ipykernel>=6.29.5",
"openpyxl>=3.1.5",
"mkdocs>=1.5.0",
"mkdocs-material>=9.0.0",
"mkdocstrings>=0.24.0",
"mkdocstrings-python>=1.7.0",
"mkdocs-gen-files>=0.5.0",
"mkdocs-literate-nav>=0.6.0",
"pillow>=11.0.0",
"matplotlib>=3.9.4",
"networkx>=3.2.1",
"pyvis>=0.3.2",
"scikit-learn>=1.6.0",
],
},
)