forked from przadka/faf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.07 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (43 loc) · 1.07 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
49
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "faf"
version = "0.1.0"
description = "Fire And Forget (FAF) - CLI tool for GTD workflows using LLMs."
authors = [
{ name = "Michal Przadka" }
]
readme = "README.md"
requires-python = ">=3.6"
dependencies = [
"python-dotenv",
"docstring-parser",
"litellm",
"icecream",
"fastmcp[cli]", # Include CLI tools for linting and testing
"uvicorn",
"anyio>=4.0.0"
]
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
[project.urls]
Homepage = "https://github.com/przadka/faf"
[project.optional-dependencies]
dev = [
"pytest",
"nox",
"black"
]
[project.scripts]
faf = "faf.main:main"
faf-mcp = "faf.mcp_server:main"
[tool.ruff]
line-length = 100
exclude = [".git", "__pycache__", "build", "dist", ".nox", ".aws-sam", "integrations/autokey.py", "integrations/gsheets.gs"]
[tool.ruff.lint]
select = ["E", "F", "W"]