elspais 0.9.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- elspais/__init__.py +36 -0
- elspais/__main__.py +8 -0
- elspais/cli.py +525 -0
- elspais/commands/__init__.py +12 -0
- elspais/commands/analyze.py +218 -0
- elspais/commands/config_cmd.py +501 -0
- elspais/commands/edit.py +522 -0
- elspais/commands/hash_cmd.py +174 -0
- elspais/commands/index.py +166 -0
- elspais/commands/init.py +177 -0
- elspais/commands/rules_cmd.py +120 -0
- elspais/commands/trace.py +208 -0
- elspais/commands/validate.py +388 -0
- elspais/config/__init__.py +13 -0
- elspais/config/defaults.py +173 -0
- elspais/config/loader.py +494 -0
- elspais/core/__init__.py +21 -0
- elspais/core/content_rules.py +170 -0
- elspais/core/hasher.py +143 -0
- elspais/core/models.py +318 -0
- elspais/core/parser.py +596 -0
- elspais/core/patterns.py +390 -0
- elspais/core/rules.py +514 -0
- elspais/mcp/__init__.py +42 -0
- elspais/mcp/__main__.py +6 -0
- elspais/mcp/context.py +171 -0
- elspais/mcp/serializers.py +112 -0
- elspais/mcp/server.py +339 -0
- elspais/testing/__init__.py +27 -0
- elspais/testing/config.py +48 -0
- elspais/testing/mapper.py +163 -0
- elspais/testing/result_parser.py +289 -0
- elspais/testing/scanner.py +206 -0
- elspais-0.9.1.dist-info/METADATA +393 -0
- elspais-0.9.1.dist-info/RECORD +38 -0
- elspais-0.9.1.dist-info/WHEEL +4 -0
- elspais-0.9.1.dist-info/entry_points.txt +2 -0
- elspais-0.9.1.dist-info/licenses/LICENSE +21 -0
|
@@ -0,0 +1,393 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: elspais
|
|
3
|
+
Version: 0.9.1
|
|
4
|
+
Summary: Requirements validation and traceability tools - L-Space connects all libraries
|
|
5
|
+
Home-page: https://github.com/anspar/elspais
|
|
6
|
+
Author: Anspar
|
|
7
|
+
Author-email: dev@anspar.io
|
|
8
|
+
License: MIT
|
|
9
|
+
Project-URL: Documentation, https://github.com/anspar/elspais#readme
|
|
10
|
+
Project-URL: Repository, https://github.com/anspar/elspais
|
|
11
|
+
Project-URL: Issues, https://github.com/anspar/elspais/issues
|
|
12
|
+
Project-URL: Changelog, https://github.com/anspar/elspais/blob/main/CHANGELOG.md
|
|
13
|
+
Keywords: documentation,requirements,specifications,traceability,validation
|
|
14
|
+
Classifier: Development Status :: 4 - Beta
|
|
15
|
+
Classifier: Environment :: Console
|
|
16
|
+
Classifier: Intended Audience :: Developers
|
|
17
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
18
|
+
Classifier: Operating System :: OS Independent
|
|
19
|
+
Classifier: Programming Language :: Python :: 3
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
24
|
+
Classifier: Topic :: Software Development :: Documentation
|
|
25
|
+
Classifier: Topic :: Software Development :: Quality Assurance
|
|
26
|
+
Classifier: Typing :: Typed
|
|
27
|
+
Requires-Python: >=3.9
|
|
28
|
+
Provides-Extra: binary
|
|
29
|
+
Requires-Dist: pyinstaller>=6.0; extra == 'binary'
|
|
30
|
+
Provides-Extra: dev
|
|
31
|
+
Requires-Dist: black>=23.0; extra == 'dev'
|
|
32
|
+
Requires-Dist: mypy>=1.0; extra == 'dev'
|
|
33
|
+
Requires-Dist: pytest-cov>=4.0; extra == 'dev'
|
|
34
|
+
Requires-Dist: pytest>=7.0; extra == 'dev'
|
|
35
|
+
Requires-Dist: ruff>=0.1.0; extra == 'dev'
|
|
36
|
+
Provides-Extra: mcp
|
|
37
|
+
Requires-Dist: mcp>=1.0; extra == 'mcp'
|
|
38
|
+
Description-Content-Type: text/markdown
|
|
39
|
+
|
|
40
|
+
# elspais
|
|
41
|
+
|
|
42
|
+
> "L-Space is the ultimate library, connecting all libraries everywhere through the sheer weight of accumulated knowledge."
|
|
43
|
+
> — Terry Pratchett
|
|
44
|
+
|
|
45
|
+
**elspais** is a requirements validation and traceability tool that helps teams manage formal requirements across single or multiple repositories. It supports configurable ID patterns, validation rules, and generates traceability matrices.
|
|
46
|
+
|
|
47
|
+
## Features
|
|
48
|
+
|
|
49
|
+
- **Zero Dependencies**: Core CLI uses only Python 3.9+ standard library
|
|
50
|
+
- **Configurable ID Patterns**: Support for `REQ-p00001`, `PRD-00001`, `PROJ-123`, named requirements, and custom formats
|
|
51
|
+
- **Validation Rules**: Enforce requirement hierarchies (PRD → OPS → DEV) with configurable constraints
|
|
52
|
+
- **Multi-Repository**: Link requirements across core and associated repositories
|
|
53
|
+
- **Traceability Matrices**: Generate Markdown, HTML, or CSV output
|
|
54
|
+
- **Hash-Based Change Detection**: Track requirement changes with SHA-256 hashes
|
|
55
|
+
- **Content Rules**: Define semantic validation guidelines for AI agents
|
|
56
|
+
- **MCP Server**: Integrate with AI assistants via Model Context Protocol
|
|
57
|
+
|
|
58
|
+
## Installation
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
pip install elspais
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
Or install from source:
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
git clone https://github.com/anspar/elspais.git
|
|
68
|
+
cd elspais
|
|
69
|
+
pip install -e .
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
## Quick Start
|
|
73
|
+
|
|
74
|
+
### Initialize a Repository
|
|
75
|
+
|
|
76
|
+
```bash
|
|
77
|
+
# Create .elspais.toml with default configuration
|
|
78
|
+
elspais init
|
|
79
|
+
|
|
80
|
+
# Or specify repository type
|
|
81
|
+
elspais init --type core # Core repository
|
|
82
|
+
elspais init --type associated --associated-prefix CAL # Associated repo
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
### Validate Requirements
|
|
86
|
+
|
|
87
|
+
```bash
|
|
88
|
+
# Validate all requirements in spec/ directory
|
|
89
|
+
elspais validate
|
|
90
|
+
|
|
91
|
+
# Verbose output
|
|
92
|
+
elspais validate -v
|
|
93
|
+
|
|
94
|
+
# Validate with auto-fix for fixable issues
|
|
95
|
+
elspais validate --fix
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
### Generate Traceability Matrix
|
|
99
|
+
|
|
100
|
+
```bash
|
|
101
|
+
# Generate both Markdown and HTML
|
|
102
|
+
elspais trace
|
|
103
|
+
|
|
104
|
+
# Generate specific format
|
|
105
|
+
elspais trace --format html
|
|
106
|
+
elspais trace --format csv
|
|
107
|
+
|
|
108
|
+
# Custom output location
|
|
109
|
+
elspais trace --output docs/traceability.html
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
### Manage Requirement Hashes
|
|
113
|
+
|
|
114
|
+
```bash
|
|
115
|
+
# Verify all hashes match content
|
|
116
|
+
elspais hash verify
|
|
117
|
+
|
|
118
|
+
# Update all hashes
|
|
119
|
+
elspais hash update
|
|
120
|
+
|
|
121
|
+
# Update specific requirement
|
|
122
|
+
elspais hash update REQ-d00027
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
### Analyze Requirements
|
|
126
|
+
|
|
127
|
+
```bash
|
|
128
|
+
# Show requirement hierarchy tree
|
|
129
|
+
elspais analyze hierarchy
|
|
130
|
+
|
|
131
|
+
# Find orphaned requirements
|
|
132
|
+
elspais analyze orphans
|
|
133
|
+
|
|
134
|
+
# Implementation coverage report
|
|
135
|
+
elspais analyze coverage
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
## Configuration
|
|
139
|
+
|
|
140
|
+
Create `.elspais.toml` in your repository root:
|
|
141
|
+
|
|
142
|
+
```toml
|
|
143
|
+
[project]
|
|
144
|
+
name = "my-project"
|
|
145
|
+
type = "core" # "core" | "associated"
|
|
146
|
+
|
|
147
|
+
[directories]
|
|
148
|
+
spec = "spec"
|
|
149
|
+
docs = "docs"
|
|
150
|
+
code = ["src", "apps", "packages"]
|
|
151
|
+
|
|
152
|
+
[patterns]
|
|
153
|
+
id_template = "{prefix}-{type}{id}"
|
|
154
|
+
prefix = "REQ"
|
|
155
|
+
|
|
156
|
+
[patterns.types]
|
|
157
|
+
prd = { id = "p", name = "Product Requirement", level = 1 }
|
|
158
|
+
ops = { id = "o", name = "Operations Requirement", level = 2 }
|
|
159
|
+
dev = { id = "d", name = "Development Requirement", level = 3 }
|
|
160
|
+
|
|
161
|
+
[patterns.id_format]
|
|
162
|
+
style = "numeric"
|
|
163
|
+
digits = 5
|
|
164
|
+
leading_zeros = true
|
|
165
|
+
|
|
166
|
+
[rules.hierarchy]
|
|
167
|
+
allowed_implements = [
|
|
168
|
+
"dev -> ops, prd",
|
|
169
|
+
"ops -> prd",
|
|
170
|
+
"prd -> prd",
|
|
171
|
+
]
|
|
172
|
+
allow_circular = false
|
|
173
|
+
allow_orphans = false
|
|
174
|
+
|
|
175
|
+
[rules.format]
|
|
176
|
+
require_hash = true
|
|
177
|
+
require_assertions = true
|
|
178
|
+
allowed_statuses = ["Active", "Draft", "Deprecated", "Superseded"]
|
|
179
|
+
```
|
|
180
|
+
|
|
181
|
+
See [docs/configuration.md](docs/configuration.md) for full reference.
|
|
182
|
+
|
|
183
|
+
## Requirement Format
|
|
184
|
+
|
|
185
|
+
elspais expects requirements in Markdown format:
|
|
186
|
+
|
|
187
|
+
```markdown
|
|
188
|
+
### REQ-d00001: Requirement Title
|
|
189
|
+
|
|
190
|
+
**Level**: Dev | **Implements**: p00001 | **Status**: Active
|
|
191
|
+
|
|
192
|
+
The system SHALL provide user authentication.
|
|
193
|
+
|
|
194
|
+
**Rationale**: Security requires identity verification.
|
|
195
|
+
|
|
196
|
+
**Acceptance Criteria**:
|
|
197
|
+
- Users can log in with email/password
|
|
198
|
+
- Session expires after 30 minutes of inactivity
|
|
199
|
+
|
|
200
|
+
*End* *Requirement Title* | **Hash**: a1b2c3d4
|
|
201
|
+
---
|
|
202
|
+
```
|
|
203
|
+
|
|
204
|
+
## ID Pattern Examples
|
|
205
|
+
|
|
206
|
+
elspais supports multiple ID formats:
|
|
207
|
+
|
|
208
|
+
| Pattern | Example | Configuration |
|
|
209
|
+
|---------|---------|---------------|
|
|
210
|
+
| HHT Default | `REQ-p00001` | `id_template = "{prefix}-{type}{id}"` |
|
|
211
|
+
| Type-Prefix | `PRD-00001` | `id_template = "{type}-{id}"` |
|
|
212
|
+
| Jira-Like | `PROJ-123` | `id_template = "{prefix}-{id}"` |
|
|
213
|
+
| Named | `REQ-UserAuth` | `style = "named"` |
|
|
214
|
+
| Associated | `REQ-CAL-d00001` | `associated.enabled = true` |
|
|
215
|
+
|
|
216
|
+
See [docs/patterns.md](docs/patterns.md) for details.
|
|
217
|
+
|
|
218
|
+
## Multi-Repository Support
|
|
219
|
+
|
|
220
|
+
For associated repositories that reference a core repository:
|
|
221
|
+
|
|
222
|
+
```toml
|
|
223
|
+
[project]
|
|
224
|
+
type = "associated"
|
|
225
|
+
|
|
226
|
+
[associated]
|
|
227
|
+
prefix = "CAL"
|
|
228
|
+
|
|
229
|
+
[core]
|
|
230
|
+
path = "../core-repo"
|
|
231
|
+
```
|
|
232
|
+
|
|
233
|
+
Validate with core linking:
|
|
234
|
+
|
|
235
|
+
```bash
|
|
236
|
+
elspais validate --core-repo ../core-repo
|
|
237
|
+
```
|
|
238
|
+
|
|
239
|
+
## Content Rules
|
|
240
|
+
|
|
241
|
+
Content rules are markdown files that provide semantic validation guidance for AI agents authoring requirements:
|
|
242
|
+
|
|
243
|
+
```bash
|
|
244
|
+
# Configure content rules
|
|
245
|
+
elspais config add rules.content_rules "spec/AI-AGENT.md"
|
|
246
|
+
|
|
247
|
+
# List configured rules
|
|
248
|
+
elspais rules list
|
|
249
|
+
|
|
250
|
+
# View a specific rule
|
|
251
|
+
elspais rules show AI-AGENT.md
|
|
252
|
+
```
|
|
253
|
+
|
|
254
|
+
Content rule files can include YAML frontmatter for metadata:
|
|
255
|
+
|
|
256
|
+
```markdown
|
|
257
|
+
---
|
|
258
|
+
title: AI Agent Guidelines
|
|
259
|
+
type: guidance
|
|
260
|
+
applies_to: [requirements, assertions]
|
|
261
|
+
---
|
|
262
|
+
|
|
263
|
+
# AI Agent Guidelines
|
|
264
|
+
|
|
265
|
+
- Use SHALL for normative statements
|
|
266
|
+
- One assertion per obligation
|
|
267
|
+
- No duplication across levels
|
|
268
|
+
```
|
|
269
|
+
|
|
270
|
+
## MCP Server (AI Integration)
|
|
271
|
+
|
|
272
|
+
elspais includes an MCP (Model Context Protocol) server for AI assistant integration:
|
|
273
|
+
|
|
274
|
+
```bash
|
|
275
|
+
# Install with MCP support
|
|
276
|
+
pip install elspais[mcp]
|
|
277
|
+
|
|
278
|
+
# Start MCP server
|
|
279
|
+
elspais mcp serve
|
|
280
|
+
```
|
|
281
|
+
|
|
282
|
+
Configure in Claude Desktop (`claude_desktop_config.json`):
|
|
283
|
+
|
|
284
|
+
```json
|
|
285
|
+
{
|
|
286
|
+
"mcpServers": {
|
|
287
|
+
"elspais": {
|
|
288
|
+
"command": "elspais",
|
|
289
|
+
"args": ["mcp", "serve"],
|
|
290
|
+
"cwd": "/path/to/your/project"
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
```
|
|
295
|
+
|
|
296
|
+
### MCP Resources
|
|
297
|
+
|
|
298
|
+
| Resource | Description |
|
|
299
|
+
|----------|-------------|
|
|
300
|
+
| `requirements://all` | List all requirements |
|
|
301
|
+
| `requirements://{id}` | Get requirement details |
|
|
302
|
+
| `requirements://level/{level}` | Filter by PRD/OPS/DEV |
|
|
303
|
+
| `content-rules://list` | List content rules |
|
|
304
|
+
| `content-rules://{file}` | Get content rule content |
|
|
305
|
+
| `config://current` | Current configuration |
|
|
306
|
+
|
|
307
|
+
### MCP Tools
|
|
308
|
+
|
|
309
|
+
| Tool | Description |
|
|
310
|
+
|------|-------------|
|
|
311
|
+
| `validate` | Run validation rules |
|
|
312
|
+
| `parse_requirement` | Parse requirement text |
|
|
313
|
+
| `search` | Search requirements |
|
|
314
|
+
| `get_requirement` | Get requirement details |
|
|
315
|
+
| `analyze` | Analyze hierarchy/orphans/coverage |
|
|
316
|
+
|
|
317
|
+
## CLI Reference
|
|
318
|
+
|
|
319
|
+
```
|
|
320
|
+
elspais [OPTIONS] COMMAND [ARGS]
|
|
321
|
+
|
|
322
|
+
Options:
|
|
323
|
+
--config PATH Path to config file
|
|
324
|
+
--spec-dir PATH Override spec directory
|
|
325
|
+
-v, --verbose Verbose output
|
|
326
|
+
-q, --quiet Suppress non-error output
|
|
327
|
+
--version Show version
|
|
328
|
+
--help Show help
|
|
329
|
+
|
|
330
|
+
Commands:
|
|
331
|
+
validate Validate requirements format, links, hashes
|
|
332
|
+
trace Generate traceability matrix
|
|
333
|
+
hash Manage requirement hashes (verify, update)
|
|
334
|
+
index Validate or regenerate INDEX.md
|
|
335
|
+
analyze Analyze requirement hierarchy
|
|
336
|
+
edit Edit requirements in-place (status, implements, move)
|
|
337
|
+
config View and modify configuration
|
|
338
|
+
rules View and manage content rules
|
|
339
|
+
mcp MCP server commands (requires elspais[mcp])
|
|
340
|
+
version Show version and check for updates
|
|
341
|
+
init Create .elspais.toml configuration
|
|
342
|
+
```
|
|
343
|
+
|
|
344
|
+
## Development
|
|
345
|
+
|
|
346
|
+
```bash
|
|
347
|
+
# Clone and install in development mode
|
|
348
|
+
git clone https://github.com/anspar/elspais.git
|
|
349
|
+
cd elspais
|
|
350
|
+
pip install -e ".[dev]"
|
|
351
|
+
|
|
352
|
+
# Run tests
|
|
353
|
+
pytest
|
|
354
|
+
|
|
355
|
+
# Run with coverage
|
|
356
|
+
pytest --cov=elspais
|
|
357
|
+
|
|
358
|
+
# Type checking
|
|
359
|
+
mypy src/elspais
|
|
360
|
+
|
|
361
|
+
# Linting
|
|
362
|
+
ruff check src/elspais
|
|
363
|
+
black --check src/elspais
|
|
364
|
+
```
|
|
365
|
+
|
|
366
|
+
## Version Pinning
|
|
367
|
+
|
|
368
|
+
For reproducible builds, pin the version in your project:
|
|
369
|
+
|
|
370
|
+
```bash
|
|
371
|
+
# .github/versions.env
|
|
372
|
+
ELSPAIS_VERSION=0.1.0
|
|
373
|
+
```
|
|
374
|
+
|
|
375
|
+
```yaml
|
|
376
|
+
# GitHub Actions
|
|
377
|
+
- name: Install elspais
|
|
378
|
+
run: pip install elspais==${{ env.ELSPAIS_VERSION }}
|
|
379
|
+
```
|
|
380
|
+
|
|
381
|
+
## License
|
|
382
|
+
|
|
383
|
+
MIT License - see [LICENSE](LICENSE) for details.
|
|
384
|
+
|
|
385
|
+
## Contributing
|
|
386
|
+
|
|
387
|
+
Contributions welcome! Please read the contributing guidelines before submitting PRs.
|
|
388
|
+
|
|
389
|
+
## Links
|
|
390
|
+
|
|
391
|
+
- [Documentation](https://github.com/anspar/elspais#readme)
|
|
392
|
+
- [Issue Tracker](https://github.com/anspar/elspais/issues)
|
|
393
|
+
- [Changelog](CHANGELOG.md)
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
elspais/__init__.py,sha256=grQHU0RmRQChHUEb_cH_OuGmxADj5fDSNNayhXEQco4,1014
|
|
2
|
+
elspais/__main__.py,sha256=rCMaObqJeT_6dhyfND7S4dh_lv30j7Ww3Z7992YYwaE,130
|
|
3
|
+
elspais/cli.py,sha256=yJ8Bs_LfDA9hFvlowYgKOQGx9EoM5-9M2bAphYhrSHc,14098
|
|
4
|
+
elspais/commands/__init__.py,sha256=jS7ry2ez7xri-fUlYUw9fGKJi5yTHtVN4PU8voHjgLI,155
|
|
5
|
+
elspais/commands/analyze.py,sha256=5hE6YRL8AoAz2ukkR1rj6aiD2TNJi63UHYVJXmKoOUs,7135
|
|
6
|
+
elspais/commands/config_cmd.py,sha256=KnH7vISH4041rqQrFftgffYLIujmIllZ_NCl5hIvCnE,13943
|
|
7
|
+
elspais/commands/edit.py,sha256=Ey42VCAsV2G1WzCZ3qy1IAoG88zeba3O0iZjiodJZZA,16054
|
|
8
|
+
elspais/commands/hash_cmd.py,sha256=pPKvhS99Nb-AEO5JrLUJQNQbXkfCJ0vVQE_L8PZW5NQ,5686
|
|
9
|
+
elspais/commands/index.py,sha256=_jPGt_LnGI6gGJLonzOoM978YpTj14GWDCCemtSIah4,5283
|
|
10
|
+
elspais/commands/init.py,sha256=y2vxR5pvd0gmONJYjX3GtGbMfmJU11k_zRKWCm7O6Qo,3870
|
|
11
|
+
elspais/commands/rules_cmd.py,sha256=b2d0l-rn-WTd6ULJWsjAebBTcKv_yndO7pVNc29QEoo,3415
|
|
12
|
+
elspais/commands/trace.py,sha256=xXpXD_ZDsr2B0YA342V4RJpV0zeRrq_l-gxwvO8NKHo,7651
|
|
13
|
+
elspais/commands/validate.py,sha256=JItxCp9LjfJ-jD11C08NcnF37JFcfNacIYJCP3SV-2M,13083
|
|
14
|
+
elspais/config/__init__.py,sha256=NkQEonHWWiXXCDrfehOCrsEYSuhj75KYj8oBQ7FuS4c,292
|
|
15
|
+
elspais/config/defaults.py,sha256=6GddebKwrDAiTp0tGzkNSEuGM_HeA846o8CQPYS4yz8,5177
|
|
16
|
+
elspais/config/loader.py,sha256=MnG_j2W1pOSRTTUHAOvu5xcJUAzDFNPvRjloFXpM15w,13827
|
|
17
|
+
elspais/core/__init__.py,sha256=OTQ1TOf7iLN4czmlkrV5tiaxpAat0VcrWpxYbfonAys,576
|
|
18
|
+
elspais/core/content_rules.py,sha256=4UoA_SUJK5R2MG9NE0Z8sNzMVPq3beEJGKEtX_NAeTk,4515
|
|
19
|
+
elspais/core/hasher.py,sha256=X3Ry_M6zgs2pZPZ3UFItlvM0mRW6aPS0SKPhCYeaFUE,4259
|
|
20
|
+
elspais/core/models.py,sha256=G08Yg9_69SSrdfGCgZJmya6DESiCijS2Y228q32m0l8,9558
|
|
21
|
+
elspais/core/parser.py,sha256=LlureFW9dbpf26VsSF8yP7IvHcZC4zaJ_YPWgqx9sdc,22140
|
|
22
|
+
elspais/core/patterns.py,sha256=wEkzIjBRDDFyR3LZ-Lbm0a2IaU6Pdi80a9UUqb_S_aQ,13082
|
|
23
|
+
elspais/core/rules.py,sha256=WIn41JupkZannGgEfhqK__aomsJVU9aqpq__s2ZpZgU,19036
|
|
24
|
+
elspais/mcp/__init__.py,sha256=5yYWJpYkRu8AyJHUkbIP1HVngdyGEygzonJjdypAKb0,1143
|
|
25
|
+
elspais/mcp/__main__.py,sha256=oqpwTiE14vr5AGnP0MxRzILx_hYqonUMMK96dX-EXVw,134
|
|
26
|
+
elspais/mcp/context.py,sha256=MmYsDFA6nEVmgRffCQlqJMQjI0joQQJh1tFFPEeUeCA,5538
|
|
27
|
+
elspais/mcp/serializers.py,sha256=FuSJT_Qg5BTQEwdER0G7ES2IJYZw7mDqyQqQIZ6_3FA,2832
|
|
28
|
+
elspais/mcp/server.py,sha256=tgmeodGIqzz3vvGunDI6NhY0avQKn0F0yOiF7sbjJ-I,10416
|
|
29
|
+
elspais/testing/__init__.py,sha256=hJB3V28HoeZUnIexi2mkaBwo0bQ7uSxBs-IZmcmpFtQ,879
|
|
30
|
+
elspais/testing/config.py,sha256=PQkrnuk_p8pObc-Nio3s3mIKLO4AfB-2eiwXruXTw0Y,1620
|
|
31
|
+
elspais/testing/mapper.py,sha256=EGund_KgeYbAnWRRcnuVs0xCzlf7EvJ-qiluSmvRIso,5649
|
|
32
|
+
elspais/testing/result_parser.py,sha256=u-TI5oytCqxz769AyU7WF9mOOULSzZAArvBg6JXwG1Q,9280
|
|
33
|
+
elspais/testing/scanner.py,sha256=PEn0qJCE2eX2SCru3Cc-v18mf81q7BNkPYE-MZ3m8CM,7037
|
|
34
|
+
elspais-0.9.1.dist-info/METADATA,sha256=3AtcIz9g0uMkL_txPwM638E5NBPSWA-jujYGwNahIAU,9682
|
|
35
|
+
elspais-0.9.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
36
|
+
elspais-0.9.1.dist-info/entry_points.txt,sha256=yWZZEfn2fBSKSzGoS-fMQ9YoTkyeu6-i7Oht6NsdKpk,45
|
|
37
|
+
elspais-0.9.1.dist-info/licenses/LICENSE,sha256=x_dNMsy_askp2MmKXZFL2bKW_tDiJHcRTyAg0TY1RMI,1063
|
|
38
|
+
elspais-0.9.1.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Anspar
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|