-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
153 lines (131 loc) · 3.42 KB
/
pyproject.toml
File metadata and controls
153 lines (131 loc) · 3.42 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
[project]
name = "darkzloop"
version = "0.8.2"
description = "Reliable. Autonomous. Model-Agnostic. Turn any LLM into a disciplined software engineer."
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{name = "Darkzloop Contributors"}
]
keywords = [
# Primary discovery terms (high volume)
"agent",
"llm",
"ai",
"automation",
"cli",
"dev-tool",
"coding-assistant",
# Backend-specific (users searching for their tool)
"claude",
"ollama",
"copilot",
"openai",
"anthropic",
# Task-specific (what users want to do)
"refactoring",
"testing",
"code-generation",
"debugging",
# Architecture terms (technical users)
"fsm",
"finite-state-machine",
"agentic",
"orchestration",
# Language support (stack-specific searches)
"rust",
"python",
"typescript",
"nodejs",
"golang",
]
classifiers = [
# Maturity
"Development Status :: 4 - Beta",
# Environment
"Environment :: Console",
# Audience
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
# License
"License :: OSI Approved :: MIT License",
# OS
"Operating System :: OS Independent",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
# Python versions
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
# Topics (critical for discoverability)
"Topic :: Software Development",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Build Tools",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Utilities",
# Typing
"Typing :: Typed",
]
dependencies = [
"typer[all]>=0.9.0",
"rich>=13.0.0",
"pydantic>=2.0.0",
"jinja2>=3.1.0",
"networkx>=3.0",
]
[project.optional-dependencies]
# Direct API access (optional - BYOA mode needs none of these)
openai = ["openai>=1.0.0"]
anthropic = ["anthropic>=0.18.0"]
all = [
"openai>=1.0.0",
"anthropic>=0.18.0",
]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"ruff>=0.1.0",
"mypy>=1.0.0",
]
[project.scripts]
darkzloop = "darkzloop.cli.main:cli"
[project.urls]
Homepage = "https://github.com/darkzloop/darkzloop"
Documentation = "https://darkzloop.dev/docs"
Repository = "https://github.com/darkzloop/darkzloop"
Changelog = "https://github.com/darkzloop/darkzloop/blob/main/CHANGELOG.md"
"Bug Tracker" = "https://github.com/darkzloop/darkzloop/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["darkzloop"]
[tool.hatch.build.targets.sdist]
include = [
"/darkzloop",
"/templates",
"/schemas",
"/README.md",
"/LICENSE",
]
[tool.black]
line-length = 100
target-version = ["py310", "py311", "py312"]
[tool.ruff]
line-length = 100
select = ["E", "F", "I", "N", "W"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_ignores = true
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"