rapidkit 1.0.0-beta.4 → 1.0.0-beta.6

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.
@@ -0,0 +1,70 @@
1
+ {
2
+ "name": "fastapi-standard",
3
+ "version": "1.0.0",
4
+ "description": "Standard FastAPI starter kit with basic project structure",
5
+ "author": "RapidKit Team",
6
+ "license": "MIT",
7
+ "rapidkit_min_version": "2.0.0",
8
+ "python_min_version": "3.10",
9
+ "tags": ["fastapi", "python", "api", "backend", "microservices"],
10
+ "features": [
11
+ "FastAPI application setup",
12
+ "Routing system with health check",
13
+ "Module system for extensibility",
14
+ "CLI commands via Poetry scripts",
15
+ "Testing setup with pytest",
16
+ "Code quality tools (black, ruff, mypy)"
17
+ ],
18
+ "files": [
19
+ "src/main.py",
20
+ "src/__init__.py",
21
+ "src/cli.py",
22
+ "src/routing/__init__.py",
23
+ "src/routing/health.py",
24
+ "src/modules/__init__.py",
25
+ "tests/__init__.py",
26
+ "README.md",
27
+ "pyproject.toml"
28
+ ],
29
+ "variables": {
30
+ "project_name": {
31
+ "type": "string",
32
+ "description": "Project name (snake_case)",
33
+ "required": true,
34
+ "pattern": "^[a-z][a-z0-9_]*$"
35
+ },
36
+ "author": {
37
+ "type": "string",
38
+ "description": "Project author name",
39
+ "default": "RapidKit User"
40
+ },
41
+ "description": {
42
+ "type": "string",
43
+ "description": "Project description",
44
+ "default": "FastAPI service generated with RapidKit"
45
+ },
46
+ "app_version": {
47
+ "type": "string",
48
+ "description": "Initial version number",
49
+ "default": "0.1.0",
50
+ "pattern": "^\\d+\\.\\d+\\.\\d+$"
51
+ },
52
+ "license": {
53
+ "type": "string",
54
+ "description": "Project license",
55
+ "default": "MIT",
56
+ "enum": ["MIT", "Apache-2.0", "BSD-3-Clause", "GPL-3.0", "Proprietary"]
57
+ }
58
+ },
59
+ "dependencies": {
60
+ "required": {
61
+ "python": "^3.10",
62
+ "poetry": "^1.5.0"
63
+ },
64
+ "python_packages": {
65
+ "fastapi": "^0.100.0",
66
+ "uvicorn": "^0.23.0",
67
+ "pydantic": "^2.0.0"
68
+ }
69
+ }
70
+ }