-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
114 lines (101 loc) · 2.4 KB
/
pyproject.toml
File metadata and controls
114 lines (101 loc) · 2.4 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "devaiflow"
version = "2.2.0-dev"
description = "DevAIFlow - Manage AI coding assistant sessions with optional issue tracker integration"
readme = "README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
authors = [
{name = "Dominique Vernier"}
]
keywords = [
"ai",
"claude",
"github-copilot",
"cursor",
"windsurf",
"development-workflow",
"jira",
"project-management",
"automation",
"session-manager",
"devops",
"cli",
"ai-assistant",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"click>=8.1.7",
"pydantic>=2.5.0",
"rich>=13.7.0",
"textual>=0.47.0",
"anthropic>=0.40.0",
"requests>=2.31.0",
"pyyaml>=6.0",
"jsonschema>=4.17.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.3",
"pytest-cov>=4.1.0",
"black>=23.12.1",
"ruff>=0.1.9",
"mypy>=1.8.0",
]
[project.scripts]
daf = "devflow.cli.main:cli"
[project.urls]
Homepage = "https://github.com/itdove/devaiflow"
"Bug Tracker" = "https://github.com/itdove/devaiflow/issues"
Documentation = "https://github.com/itdove/devaiflow/blob/main/README.md"
"Source Code" = "https://github.com/itdove/devaiflow"
Logo = "https://raw.githubusercontent.com/itdove/devaiflow/main/images/daf-logo-160x160.png"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["devflow*"]
[tool.setuptools.package-data]
"*" = ["*.md"]
[tool.pytest.ini_options]
# Test discovery patterns
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
# Test directories
testpaths = ["tests"]
# Output options
addopts = [
"-v",
"--strict-markers",
"--tb=short",
"--disable-warnings",
]
# Markers for categorizing tests
markers = [
"jira: Tests that require JIRA mocking",
"integration: Integration tests",
"unit: Unit tests",
"slow: Slow-running tests",
]
[tool.coverage.run]
source = ["devflow"]
omit = [
"tests/*",
"**/__pycache__/*",
"**/venv/*",
]
[tool.coverage.report]
precision = 2
show_missing = true
skip_covered = false