-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
92 lines (85 loc) · 2.59 KB
/
pyproject.toml
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
84
85
86
87
88
89
90
91
92
[build-system]
requires = ["setuptools>=61.0", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "agrag"
dynamic = ["version"]
authors = [
{ name="AutoGluon Community"},
]
description = "An automated RAG pipeline building framework"
readme = "README.md"
requires-python = ">=3.9, <3.12"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Customer Service",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Image Recognition"
]
license = {file = "LICENSE"}
dependencies = [
"beautifulsoup4>=4.12.0,<5.0",
"boto3>=1.34.124,<2.0",
"datasets>=2.20.0,<4.0",
"evaluate>=0.4.2,<1.0",
"faiss-cpu>=1.8.0,<2.0",
"langchain-community>=0.2.4,<1.0",
"langchain-text-splitters>=0.2.1,<1.0",
"numpy>=1.26.4,<3.0",
"openai>=1.34.0,<2.0",
"pandas>=2.2.2,<3.0",
"pymilvus>=2.4.1,<3.0",
"pypdf>=4.2.0,<6.0",
"pytest>=8.2.2,<9.0",
"python-docx>=1.1.2,<2.0",
"pyyaml>=6.0.1,<7.0",
"scikit-learn>=1.3.2,<2.0",
"torch>=2.3.1,<3.0",
"torchvision>=0.18.1,<1.0",
"transformers>=4.41.2,<5.0",
"qa-metrics>=0.2.16,<0.4.0"
]
[project.scripts]
agrag = "agrag.main:ag_rag"
[project.optional-dependencies]
tests = ["pytest", "pytest-mock", "tox", "black>=23.1.9, <=24.10.0", "isort>=5.11.0, <=5.13.2"]
# Testing and formatting configurations
[tool.black]
line-length = 119
target-version = ['py39', 'py310', 'py311']
[tool.isort]
known_first_party = "autogluon"
known_third_party = [
"boto3",
"langchain_community",
"langchain_text_splitters",
"torch",
"transformers",
"yaml"
]
line_length = 119
profile = "black"
[tool.pytest.ini_options]
testpaths = "tests"
addopts = "--strict-markers"
xfail_strict = true
filterwarnings = [
"ignore::DeprecationWarning",
]