-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
98 lines (85 loc) · 2.3 KB
/
Copy pathpyproject.toml
File metadata and controls
98 lines (85 loc) · 2.3 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
98
[project]
name = "telize"
version = "0.5.0"
description = "Automate with flows, not loose prompts. Chain LLM, shell, and code in one YAML pipeline."
readme = "README.md"
license = "Apache-2.0"
authors = [{ name = "Telize AI", email = "hello@telize.ai" }]
requires-python = ">=3.12"
keywords = ["agents", "ai", "llm", "workflow", "yaml", "low-code"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = [
"chromadb>=1.0",
"croniter>=2.0",
"fastembed>=0.6",
"httpx>=0.28",
"openai>=1.0",
"jinja2>=3.1",
"pydantic>=2.10",
"pyyaml>=6.0.2",
"rich>=13.0",
]
[project.optional-dependencies]
dev = [
"mypy>=1.15",
"pytest>=8.3",
"pytest-cov>=6.0",
"ruff>=0.9",
"types-croniter>=6.0",
"types-PyYAML>=6.0",
]
[project.urls]
Homepage = "https://github.com/telize-ai/telize"
Documentation = "https://github.com/telize-ai/telize#readme"
Repository = "https://github.com/telize-ai/telize"
Issues = "https://github.com/telize-ai/telize/issues"
Changelog = "https://github.com/telize-ai/telize/blob/main/CHANGELOG.md"
[project.scripts]
telize = "telize.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/telize"]
[dependency-groups]
dev = [
"mypy>=1.15",
"pytest>=8.3",
"pytest-cov>=6.0",
"ruff>=0.9",
"types-croniter>=6.0",
"types-PyYAML>=6.0",
]
[tool.ruff]
target-version = "py312"
line-length = 100
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM", "RUF"]
[tool.ruff.lint.isort]
known-first-party = ["telize"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = ["--strict-markers", "--strict-config"]
[tool.mypy]
python_version = "3.12"
strict = true
packages = ["telize"]
mypy_path = "src"
[tool.coverage.run]
source = ["telize"]
branch = true
[tool.coverage.report]
show_missing = true
skip_empty = true