-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (40 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
49 lines (40 loc) · 1.2 KB
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "flowk"
version = "0.4.8"
authors = [
{ name="Folk Nallathambi", email="folkadonis7@gmail.com" },
]
description = "A lightweight, modular, and developer-first workflow orchestration engine for AI/LLM pipelines."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"pydantic>=2.0.0"
]
[project.optional-dependencies]
openai = ["openai>=1.0.0"]
anthropic = ["anthropic>=0.10.0"]
redis = ["redis>=5.0.0"]
api = ["fastapi>=0.110.0", "uvicorn>=0.28.0"]
ui = ["streamlit>=1.30.0"]
dev = ["pytest>=7.0.0"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[project.scripts]
flowk = "flowk.cli:main"
[project.urls]
"Homepage" = "https://github.com/folkadonis/flowk"
"Bug Tracker" = "https://github.com/folkadonis/flowk/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
flowk = ["ui/v2/dist/**/*", "ui/v2/dist/*"]