-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 807 Bytes
/
pyproject.toml
File metadata and controls
40 lines (34 loc) · 807 Bytes
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
[project]
name = "fynq"
version = "0.1.0"
description = "Universal package manager and runtime for AI agents"
readme = "README.md"
requires-python = ">=3.12"
license = { text = "MIT" }
authors = [{ name = "Ashwin" }]
dependencies = [
"typer[all]>=0.12.3",
"rich>=13.7.1",
"pydantic>=2.6.0",
"pyyaml>=6.0.1",
"litellm>=1.30.0",
"supabase>=2.0.0",
"gotrue>=1.0.0",
"pyinstaller>=6.0.0",
"duckduckgo-search>=4.0.0",
"beautifulsoup4>=4.12.0",
"httpx>=0.25.0",
]
[project.scripts]
fynq = "fynq_cli.main:app"
[build-system]
requires = ["setuptools>=68.2.2", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP"]