-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
124 lines (114 loc) · 3.07 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
[build-system]
requires = ["poetry-core>=1.0.0", "wheel"]
build-backend = "poetry.core.masonry.api"
[tool.codespell]
check-filenames = true
check-hidden = true
ignore-words-list = "astroid,gallary,momento,narl,ot,rouge"
skip = "./nomadic/core/_static,./examples,./experimental,*.csv,*.html,*.json,*.jsonl,*.pdf,*.txt,*.ipynb"
[tool.mypy]
disallow_untyped_defs = true
exclude = ["_static", "build", "examples", "notebooks", ".venv"]
ignore_missing_imports = true
python_version = "3.11.9"
[tool.poetry]
name = "nomadic"
version = "0.0.1.6"
description = "Nomadic is an enterprise-grade toolkit for teams to continuously optimize compound AI systems"
authors = ["Mustafa Bal <mustafa@nomadicml.com>"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
]
maintainers = [
"Mustafa Bal <mustafa@nomadicml.com>",
"Varun Krishnan <varun@nomadicml.com>",
"Elizabeth Hu <elizabeth@nomadicml.com>",
]
keywords = ["LLM", "HPO", "RAG", "data", "devtools", "optimization", "backtesting"]
readme = "README.md"
packages = [{include="nomadic"}]
license = "Apache-2.0"
homepage = "https://nomadicml.com/"
repository = "https://github.com/nomadic-ml/nomadic"
documentation = "https://docs.nomadicml.com/"
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
pydantic = "^2.7.1"
poetry-plugin-dotenv = "*"
pandas = "^2.0.3"
ray = {extras = ["tune"], version = "^2.35.0"}
llama-index = "^0.10.68"
llama-index-llms-sagemaker-endpoint = "^0.1.3"
llama-index-llms-together = "^0.1.3"
llama-index-llms-vllm = "^0.1.9"
flaml = "^1.2.0"
matplotlib = "^3.7.5"
optuna = "^3.6.1"
seaborn = "^0.13.2"
scipy = "^1.10.1"
numpy = "^1.24.4"
dspy-ai = "2.4.17"
[tool.poetry.group.dev.dependencies]
requests = "*"
altair = "^4.2.2"
bs4 = "*"
pymupdf = "*"
nest_asyncio = "*"
openai = "*"
pytest = "^7.4"
pytest-sugar = "*"
pytest-cov = "*"
black = {extras = ["jupyter"], version = "*"}
mypy = "*"
ruff = "*"
isort = "*"
debugpy = "^1.8.1"
watchdog = "^4.0.0"
ipykernel = "^6.29.4"
ipywidgets = "^8.1.2"
pre-commit = "^3.5.0"
codespell = {extras = ["toml"], version = "*"}
scikit-learn = "^1.3.2"
supabase = "^2.4.6"
flake8 = "7.1.0"
python-dotenv = "^1.0.1"
pytest-dotenv = "^0.5.2"
[tool.poetry.group.streamlit]
optional = false
[tool.poetry.group.streamlit.dependencies]
streamlit = "*"
llama-hub = "*"
llama-index-embeddings-openai = "*"
llama-index-experimental = "*"
[tool.poetry.group.pilots]
optional = false
[tool.poetry.group.pilots.dependencies]
boto3 = "*"
sagemaker = "*"
tritonclient = "^2.36.0"
[tool.ruff]
exclude = [
"examples",
"pilots",
]
ignore = [
"COM812",
"D212",
"D417",
"F541",
"TCH002",
"UP006",
"UP007",
]
target-version = "py38"
unfixable = [
"ERA001",
]