-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (81 loc) · 2.76 KB
/
pyproject.toml
File metadata and controls
90 lines (81 loc) · 2.76 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
[tool.poetry]
name = "titan-cli"
version = "0.4.2"
description = "Modular development tools orchestrator - Streamline your workflows with AI integration and intuitive terminal UI"
authors = ["MasOrange Apps Team <apps-management-stores@masorange.es>"]
readme = "README.md"
homepage = "https://github.com/masorange/titan-cli"
repository = "https://github.com/masorange/titan-cli"
documentation = "https://masorange.github.io/titan-cli/"
license = "MIT"
keywords = ["cli", "workflow", "orchestrator", "automation", "devtools", "ai"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
packages = [
{include = "titan_cli"},
{include = "titan_plugin_git", from = "plugins/titan-plugin-git"},
{include = "titan_plugin_github", from = "plugins/titan-plugin-github"},
{include = "titan_plugin_jira", from = "plugins/titan-plugin-jira"}
]
[tool.poetry.dependencies]
python = ">=3.10,<4.0.0"
typer = ">=0.20.0,<1.0.0"
tomli = ">=2.0.0,<3.0.0"
pydantic = ">=2.0.0,<3.0.0"
"tomli-w" = ">=1.0.0,<2.0.0"
keyring = ">=25.7.0,<26.0.0"
python-dotenv = ">=1.2.1,<2.0.0"
anthropic = ">=0.75.0,<0.76.0"
openai = ">=2.0.0,<3.0.0"
google-genai = "^1.58.0"
google-auth = ">=2.43.0,<3.0.0"
pyyaml = ">=6.0.3,<7.0.0"
jinja2 = ">=3.1.4,<4.0.0"
textual = ">=1.0.0,<2.0.0"
requests = ">=2.31.0,<3.0.0"
packaging = ">=23.0,<25.0"
structlog = ">=25.5.0,<26.0.0"
h2 = ">=4.1.0,<5.0.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.6"
mkdocs-material = "^9.5"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0"
pytest-mock = "^3.12"
pytest-cov = "^4.1"
ruff = "^0.14.9"
pytest-json-report = "^1.5.0"
textual-dev = "^1.0.0"
# Plugin path dependencies for development (editable installs)
titan-plugin-git = {path = "plugins/titan-plugin-git", develop = true}
titan-plugin-github = {path = "plugins/titan-plugin-github", develop = true}
titan-plugin-jira = {path = "plugins/titan-plugin-jira", develop = true}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
titan = "titan_cli.cli:app"
[tool.poetry.plugins."titan.plugins"]
git = "titan_plugin_git.plugin:GitPlugin"
github = "titan_plugin_github.plugin:GitHubPlugin"
jira = "titan_plugin_jira.plugin:JiraPlugin"
[tool.pytest.ini_options]
testpaths = [
"tests",
"plugins/titan-plugin-git/tests",
"plugins/titan-plugin-github/tests",
"plugins/titan-plugin-jira/tests"
]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "--import-mode=importlib"