-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (89 loc) · 2.88 KB
/
pyproject.toml
File metadata and controls
97 lines (89 loc) · 2.88 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
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
# tframex/pyproject.toml
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "tframex"
version = "1.1.0"
authors = [
{ name = "Manav Majumdar", email = "manav@tesslate.com" },
{ name = "Sanjit Verma", email = "sanjitverma@tesslate.com" },
{ name = "Prajwal Moharana", email = "pmoharana@tesslate.com" },
{ name = "TesslateAI" }
]
description = "A framework for building agentic systems with large language models."
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT" } # Updated license specification format
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"httpx>=0.25.0", # For OpenAIChatLLM and general HTTP
"python-dotenv>=1.0.0", # For .env loading in examples
"PyYAML>=6.0.1", # For YAML parsing (e.g., flow_config.yaml)
"openai>=1.0.0", # Core for OpenAIChatLLM interacting with OpenAI spec
"pydantic>=2.0.0", # For data models (Message, ToolDefinition, etc.)
# aiohttp is used by the Reddit example tool.
# If you want all examples to work out-of-the-box, include it here.
# Otherwise, consider making it an optional dependency.
"aiohttp>=3.0.0",
"mcp",
]
[project.optional-dependencies]
# Dependencies needed to run all provided examples
examples = [
"Flask>=3.0.0" # For the Reddit chatbot web example
]
# Dependencies for CLI web server functionality
web = [
"Flask>=3.0.0" # For tframex serve command
]
# Dependencies for development (linting, formatting, pre-commit hooks)
dev = [
"black>=24.3.0", # From .pre-commit-config.yaml
"isort>=5.13.2", # From .pre-commit-config.yaml
"pre-commit>=3.3.0"
# If you add pytest or other testing tools, list them here
# "pytest>=7.0.0",
]
# Enterprise storage backends
enterprise = [
"asyncpg>=0.27.0", # For PostgreSQL storage backend
"aioboto3>=11.0.0", # For S3 storage backend
"redis[hiredis]>=5.0.0", # For Redis storage backend
]
[project.urls]
Homepage = "https://github.com/TesslateAI/TFrameX"
Repository = "https://github.com/TesslateAI/TFrameX"
[project.scripts]
tframex = "tframex.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["tframex*"]
exclude = ["examples*", "tests*"]
[tool.black]
line-length = 88
target-version = ['py38']
exclude = '''
/(
\.git
| \.mypy_cache
| \.venv
| venv
| build
| dist
)/
'''
[tool.isort]
profile = "black"
line_length = 88
known_first_party = ["tframex"]