vibetuner 2.11.0__tar.gz → 2.15.1__tar.gz

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.

Potentially problematic release.


This version of vibetuner might be problematic. Click here for more details.

Files changed (86) hide show
  1. {vibetuner-2.11.0 → vibetuner-2.15.1}/PKG-INFO +23 -17
  2. {vibetuner-2.11.0 → vibetuner-2.15.1}/README.md +15 -10
  3. vibetuner-2.15.1/pyproject.toml +86 -0
  4. vibetuner-2.11.0/pyproject.toml +0 -95
  5. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/__init__.py +0 -0
  6. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/__main__.py +0 -0
  7. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/cli/__init__.py +0 -0
  8. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/cli/run.py +0 -0
  9. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/cli/scaffold.py +0 -0
  10. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/config.py +0 -0
  11. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/context.py +0 -0
  12. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/frontend/AGENTS.md +0 -0
  13. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/frontend/CLAUDE.md +0 -0
  14. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/frontend/__init__.py +0 -0
  15. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/frontend/context.py +0 -0
  16. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/frontend/deps.py +0 -0
  17. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/frontend/email.py +0 -0
  18. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/frontend/hotreload.py +0 -0
  19. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/frontend/lifespan.py +0 -0
  20. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/frontend/middleware.py +0 -0
  21. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/frontend/oauth.py +0 -0
  22. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/frontend/routes/__init__.py +0 -0
  23. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/frontend/routes/auth.py +0 -0
  24. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/frontend/routes/debug.py +0 -0
  25. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/frontend/routes/health.py +0 -0
  26. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/frontend/routes/language.py +0 -0
  27. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/frontend/routes/meta.py +0 -0
  28. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/frontend/routes/user.py +0 -0
  29. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/frontend/templates.py +0 -0
  30. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/logging.py +0 -0
  31. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/models/AGENTS.md +0 -0
  32. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/models/CLAUDE.md +0 -0
  33. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/models/__init__.py +0 -0
  34. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/models/blob.py +0 -0
  35. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/models/email_verification.py +0 -0
  36. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/models/mixins.py +0 -0
  37. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/models/oauth.py +0 -0
  38. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/models/registry.py +0 -0
  39. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/models/types.py +0 -0
  40. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/models/user.py +0 -0
  41. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/mongo.py +0 -0
  42. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/paths.py +0 -0
  43. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/services/AGENTS.md +0 -0
  44. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/services/CLAUDE.md +0 -0
  45. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/services/__init__.py +0 -0
  46. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/services/blob.py +0 -0
  47. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/services/email.py +0 -0
  48. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/tasks/AGENTS.md +0 -0
  49. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/tasks/CLAUDE.md +0 -0
  50. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/tasks/__init__.py +0 -0
  51. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/tasks/context.py +0 -0
  52. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/tasks/worker.py +0 -0
  53. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/templates/email/AGENTS.md +0 -0
  54. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/templates/email/CLAUDE.md +0 -0
  55. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/templates/email/default/magic_link.html.jinja +0 -0
  56. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/templates/email/default/magic_link.txt.jinja +0 -0
  57. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/templates/frontend/AGENTS.md +0 -0
  58. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/templates/frontend/CLAUDE.md +0 -0
  59. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/templates/frontend/base/favicons.html.jinja +0 -0
  60. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/templates/frontend/base/footer.html.jinja +0 -0
  61. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/templates/frontend/base/header.html.jinja +0 -0
  62. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/templates/frontend/base/opengraph.html.jinja +0 -0
  63. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/templates/frontend/base/skeleton.html.jinja +0 -0
  64. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/templates/frontend/debug/collections.html.jinja +0 -0
  65. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/templates/frontend/debug/components/debug_nav.html.jinja +0 -0
  66. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/templates/frontend/debug/index.html.jinja +0 -0
  67. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/templates/frontend/debug/info.html.jinja +0 -0
  68. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/templates/frontend/debug/users.html.jinja +0 -0
  69. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/templates/frontend/debug/version.html.jinja +0 -0
  70. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/templates/frontend/email/magic_link.txt.jinja +0 -0
  71. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/templates/frontend/email_sent.html.jinja +0 -0
  72. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/templates/frontend/index.html.jinja +0 -0
  73. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/templates/frontend/lang/select.html.jinja +0 -0
  74. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/templates/frontend/login.html.jinja +0 -0
  75. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/templates/frontend/meta/browserconfig.xml.jinja +0 -0
  76. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/templates/frontend/meta/robots.txt.jinja +0 -0
  77. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/templates/frontend/meta/site.webmanifest.jinja +0 -0
  78. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/templates/frontend/meta/sitemap.xml.jinja +0 -0
  79. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/templates/frontend/user/edit.html.jinja +0 -0
  80. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/templates/frontend/user/profile.html.jinja +0 -0
  81. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/templates/markdown/.placeholder +0 -0
  82. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/templates/markdown/AGENTS.md +0 -0
  83. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/templates/markdown/CLAUDE.md +0 -0
  84. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/templates.py +0 -0
  85. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/time.py +0 -0
  86. {vibetuner-2.11.0 → vibetuner-2.15.1}/src/vibetuner/versioning.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: vibetuner
3
- Version: 2.11.0
3
+ Version: 2.15.1
4
4
  Summary: Core Python framework and blessed dependencies for production-ready FastAPI + MongoDB + HTMX projects
5
5
  Keywords: fastapi,mongodb,htmx,web-framework,scaffolding,oauth,background-jobs
6
6
  Author: All Tuner Labs, S.L.
@@ -22,14 +22,14 @@ Requires-Dist: asyncer>=0.0.10
22
22
  Requires-Dist: authlib>=1.6.5
23
23
  Requires-Dist: beanie[zstd]>=2.0.0
24
24
  Requires-Dist: click>=8.3.0
25
- Requires-Dist: copier>=9.9.0,<9.9.1
25
+ Requires-Dist: copier>=9.10.3,<9.10.4
26
26
  Requires-Dist: email-validator>=2.3.0
27
27
  Requires-Dist: fastapi[standard-no-fastapi-cloud-cli]>=0.121.0
28
- Requires-Dist: granian[pname]>=2.5.6
28
+ Requires-Dist: granian[pname]>=2.5.7
29
29
  Requires-Dist: httpx[http2]>=0.28.1
30
30
  Requires-Dist: itsdangerous>=2.2.0
31
31
  Requires-Dist: loguru>=0.7.3
32
- Requires-Dist: pydantic[email]>=2.12.3
32
+ Requires-Dist: pydantic[email]>=2.12.4
33
33
  Requires-Dist: pydantic-extra-types[pycountry]>=2.10.6
34
34
  Requires-Dist: pydantic-settings>=2.11.0
35
35
  Requires-Dist: pyyaml>=6.0.3
@@ -45,7 +45,7 @@ Requires-Dist: cloudflare>=4.3.1 ; extra == 'dev'
45
45
  Requires-Dist: djlint>=1.36.4 ; extra == 'dev'
46
46
  Requires-Dist: dunamai>=1.25.0 ; extra == 'dev'
47
47
  Requires-Dist: gh-bin>=2.81.0 ; extra == 'dev'
48
- Requires-Dist: granian[pname,reload]>=2.5.6 ; extra == 'dev'
48
+ Requires-Dist: granian[pname,reload]>=2.5.7 ; extra == 'dev'
49
49
  Requires-Dist: just-bin>=1.43.0 ; extra == 'dev'
50
50
  Requires-Dist: pre-commit>=4.3.0 ; extra == 'dev'
51
51
  Requires-Dist: pysemver>=0.5.0 ; extra == 'dev'
@@ -59,8 +59,9 @@ Requires-Dist: types-authlib>=1.6.5.20251005 ; extra == 'dev'
59
59
  Requires-Dist: types-pyyaml>=6.0.12.20250915 ; extra == 'dev'
60
60
  Requires-Dist: uv-bump>=0.3.1 ; extra == 'dev'
61
61
  Requires-Python: >=3.11
62
- Project-URL: Documentation, https://github.com/alltuner/vibetuner#readme
63
- Project-URL: Homepage, https://github.com/alltuner/vibetuner
62
+ Project-URL: Changelog, https://github.com/alltuner/vibetuner/blob/main/CHANGELOG.md
63
+ Project-URL: Documentation, https://vibetuner.alltuner.com/
64
+ Project-URL: Homepage, https://vibetuner.alltuner.com/
64
65
  Project-URL: Issues, https://github.com/alltuner/vibetuner/issues
65
66
  Project-URL: Repository, https://github.com/alltuner/vibetuner
66
67
  Provides-Extra: dev
@@ -68,13 +69,16 @@ Description-Content-Type: text/markdown
68
69
 
69
70
  # vibetuner
70
71
 
71
- **Core Python framework and blessed dependencies for Vibetuner projects**
72
+ Core Python framework and blessed dependencies for Vibetuner projects
72
73
 
73
- This package provides the complete Python framework and curated dependency set for building modern web applications with Vibetuner. It includes everything from FastAPI and MongoDB integration to authentication, background jobs, and CLI tools.
74
+ This package provides the complete Python framework and curated dependency set for building modern
75
+ web applications with Vibetuner. It includes everything from FastAPI and MongoDB integration to
76
+ authentication, background jobs, and CLI tools.
74
77
 
75
78
  ## What is Vibetuner?
76
79
 
77
- Vibetuner is a production-ready scaffolding tool for FastAPI + MongoDB + HTMX web applications. This package (`vibetuner`) is the Python component that provides:
80
+ Vibetuner is a production-ready scaffolding tool for FastAPI + MongoDB + HTMX web applications.
81
+ This package (`vibetuner`) is the Python component that provides:
78
82
 
79
83
  - Complete web application framework built on FastAPI
80
84
  - MongoDB integration with Beanie ODM
@@ -83,7 +87,8 @@ Vibetuner is a production-ready scaffolding tool for FastAPI + MongoDB + HTMX we
83
87
  - CLI framework with Typer
84
88
  - Email services, blob storage, and more
85
89
 
86
- **This package is designed to be used within projects generated by the Vibetuner scaffolding tool.** For standalone use, you'll need to set up the project structure manually.
90
+ **This package is designed to be used within projects generated by the Vibetuner scaffolding
91
+ tool.** For standalone use, you'll need to set up the project structure manually.
87
92
 
88
93
  ## Installation
89
94
 
@@ -110,6 +115,7 @@ just dev
110
115
  ```
111
116
 
112
117
  This will generate a complete project with:
118
+
113
119
  - Pre-configured FastAPI application
114
120
  - Authentication system (OAuth + magic links)
115
121
  - MongoDB models and configuration
@@ -203,7 +209,7 @@ async def hello():
203
209
 
204
210
  For complete documentation, guides, and examples, see the main Vibetuner repository:
205
211
 
206
- **📖 [Vibetuner Documentation](https://github.com/alltuner/vibetuner#readme)**
212
+ **📖 [Vibetuner Documentation](https://vibetuner.alltuner.com/)**
207
213
 
208
214
  ## Package Ecosystem
209
215
 
@@ -229,8 +235,8 @@ See [LICENSE](https://github.com/alltuner/vibetuner/blob/main/LICENSE) for detai
229
235
 
230
236
  ## Links
231
237
 
232
- - **Main Repository**: https://github.com/alltuner/vibetuner
233
- - **Documentation**: https://github.com/alltuner/vibetuner#readme
234
- - **Issues**: https://github.com/alltuner/vibetuner/issues
235
- - **PyPI**: https://pypi.org/project/vibetuner/
236
- - **npm Package**: https://www.npmjs.com/package/@alltuner/vibetuner
238
+ - **Main Repository**: <https://github.com/alltuner/vibetuner>
239
+ - **Documentation**: <https://vibetuner.alltuner.com/>
240
+ - **Issues**: <https://github.com/alltuner/vibetuner/issues>
241
+ - **PyPI**: <https://pypi.org/project/vibetuner/>
242
+ - **npm Package**: <https://www.npmjs.com/package/@alltuner/vibetuner>
@@ -1,12 +1,15 @@
1
1
  # vibetuner
2
2
 
3
- **Core Python framework and blessed dependencies for Vibetuner projects**
3
+ Core Python framework and blessed dependencies for Vibetuner projects
4
4
 
5
- This package provides the complete Python framework and curated dependency set for building modern web applications with Vibetuner. It includes everything from FastAPI and MongoDB integration to authentication, background jobs, and CLI tools.
5
+ This package provides the complete Python framework and curated dependency set for building modern
6
+ web applications with Vibetuner. It includes everything from FastAPI and MongoDB integration to
7
+ authentication, background jobs, and CLI tools.
6
8
 
7
9
  ## What is Vibetuner?
8
10
 
9
- Vibetuner is a production-ready scaffolding tool for FastAPI + MongoDB + HTMX web applications. This package (`vibetuner`) is the Python component that provides:
11
+ Vibetuner is a production-ready scaffolding tool for FastAPI + MongoDB + HTMX web applications.
12
+ This package (`vibetuner`) is the Python component that provides:
10
13
 
11
14
  - Complete web application framework built on FastAPI
12
15
  - MongoDB integration with Beanie ODM
@@ -15,7 +18,8 @@ Vibetuner is a production-ready scaffolding tool for FastAPI + MongoDB + HTMX we
15
18
  - CLI framework with Typer
16
19
  - Email services, blob storage, and more
17
20
 
18
- **This package is designed to be used within projects generated by the Vibetuner scaffolding tool.** For standalone use, you'll need to set up the project structure manually.
21
+ **This package is designed to be used within projects generated by the Vibetuner scaffolding
22
+ tool.** For standalone use, you'll need to set up the project structure manually.
19
23
 
20
24
  ## Installation
21
25
 
@@ -42,6 +46,7 @@ just dev
42
46
  ```
43
47
 
44
48
  This will generate a complete project with:
49
+
45
50
  - Pre-configured FastAPI application
46
51
  - Authentication system (OAuth + magic links)
47
52
  - MongoDB models and configuration
@@ -135,7 +140,7 @@ async def hello():
135
140
 
136
141
  For complete documentation, guides, and examples, see the main Vibetuner repository:
137
142
 
138
- **📖 [Vibetuner Documentation](https://github.com/alltuner/vibetuner#readme)**
143
+ **📖 [Vibetuner Documentation](https://vibetuner.alltuner.com/)**
139
144
 
140
145
  ## Package Ecosystem
141
146
 
@@ -161,8 +166,8 @@ See [LICENSE](https://github.com/alltuner/vibetuner/blob/main/LICENSE) for detai
161
166
 
162
167
  ## Links
163
168
 
164
- - **Main Repository**: https://github.com/alltuner/vibetuner
165
- - **Documentation**: https://github.com/alltuner/vibetuner#readme
166
- - **Issues**: https://github.com/alltuner/vibetuner/issues
167
- - **PyPI**: https://pypi.org/project/vibetuner/
168
- - **npm Package**: https://www.npmjs.com/package/@alltuner/vibetuner
169
+ - **Main Repository**: <https://github.com/alltuner/vibetuner>
170
+ - **Documentation**: <https://vibetuner.alltuner.com/>
171
+ - **Issues**: <https://github.com/alltuner/vibetuner/issues>
172
+ - **PyPI**: <https://pypi.org/project/vibetuner/>
173
+ - **npm Package**: <https://www.npmjs.com/package/@alltuner/vibetuner>
@@ -0,0 +1,86 @@
1
+ [project]
2
+ name = "vibetuner"
3
+ description = "Core Python framework and blessed dependencies for production-ready FastAPI + MongoDB + HTMX projects"
4
+ version = "2.15.1"
5
+ readme = "README.md"
6
+ requires-python = ">=3.11"
7
+ license = { text = "MIT" }
8
+ authors = [{ name = "All Tuner Labs, S.L." }]
9
+ keywords = ["fastapi", "mongodb", "htmx", "web-framework", "scaffolding", "oauth", "background-jobs"]
10
+ classifiers = [
11
+ "Development Status :: 4 - Beta",
12
+ "Intended Audience :: Developers",
13
+ "License :: OSI Approved :: MIT License",
14
+ "Programming Language :: Python :: 3",
15
+ "Programming Language :: Python :: 3.11",
16
+ "Programming Language :: Python :: 3.12",
17
+ "Programming Language :: Python :: 3.13",
18
+ "Programming Language :: Python :: 3.14",
19
+ "Framework :: FastAPI",
20
+ "Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
21
+ "Topic :: Software Development :: Libraries :: Application Frameworks",
22
+ ]
23
+ dependencies = [
24
+ # These are the base dependencies of AllTuner's blessed stack
25
+ "aioboto3>=15.5.0",
26
+ "arel>=0.4.0",
27
+ "asyncer>=0.0.10",
28
+ "authlib>=1.6.5",
29
+ "beanie[zstd]>=2.0.0",
30
+ "click>=8.3.0",
31
+ "copier>=9.10.3,<9.10.4",
32
+ "email-validator>=2.3.0",
33
+ "fastapi[standard-no-fastapi-cloud-cli]>=0.121.0",
34
+ "granian[pname]>=2.5.7",
35
+ "httpx[http2]>=0.28.1",
36
+ "itsdangerous>=2.2.0",
37
+ "loguru>=0.7.3",
38
+ "pydantic[email]>=2.12.4",
39
+ "pydantic-extra-types[pycountry]>=2.10.6",
40
+ "pydantic-settings>=2.11.0",
41
+ "pyyaml>=6.0.3",
42
+ "redis[hiredis]>=7.0.1",
43
+ "rich>=14.2.0",
44
+ "sse-starlette>=3.0.3",
45
+ "starlette-babel>=1.0.3",
46
+ "starlette-htmx>=0.1.1",
47
+ "streaq[web]<6.0.0",
48
+ "typer-slim[standard]>=0.20.0",
49
+ ]
50
+
51
+ [project.scripts]
52
+ vibetuner = "vibetuner.cli:app"
53
+
54
+ [project.urls]
55
+ Homepage = "https://vibetuner.alltuner.com/"
56
+ Documentation = "https://vibetuner.alltuner.com/"
57
+ Repository = "https://github.com/alltuner/vibetuner"
58
+ Issues = "https://github.com/alltuner/vibetuner/issues"
59
+ Changelog = "https://github.com/alltuner/vibetuner/blob/main/CHANGELOG.md"
60
+
61
+ [project.optional-dependencies]
62
+ dev = [
63
+ # These are the development dependencies of AllTuner's blessed stack
64
+ "babel>=2.17.0",
65
+ "cloudflare>=4.3.1",
66
+ "djlint>=1.36.4",
67
+ "dunamai>=1.25.0",
68
+ "gh-bin>=2.81.0",
69
+ "granian[pname,reload]>=2.5.7",
70
+ "just-bin>=1.43.0",
71
+ "pre-commit>=4.3.0",
72
+ "pysemver>=0.5.0",
73
+ "ruff>=0.14.3",
74
+ "rumdl>=0.0.171",
75
+ "semver>=3.0.4",
76
+ "taplo>=0.9.3",
77
+ "ty>=0.0.1a25",
78
+ "types-aioboto3[s3,ses]>=15.5.0",
79
+ "types-authlib>=1.6.5.20251005",
80
+ "types-pyyaml>=6.0.12.20250915",
81
+ "uv-bump>=0.3.1",
82
+ ]
83
+
84
+ [build-system]
85
+ requires = ["uv_build>=0.9,<0.10"]
86
+ build-backend = "uv_build"
@@ -1,95 +0,0 @@
1
- [project]
2
- name = "vibetuner"
3
- description = "Core Python framework and blessed dependencies for production-ready FastAPI + MongoDB + HTMX projects"
4
- version = "2.11.0"
5
- readme = "README.md"
6
- requires-python = ">=3.11"
7
- license = {text = "MIT"}
8
- authors = [
9
- {name = "All Tuner Labs, S.L."},
10
- ]
11
- keywords = [
12
- "fastapi",
13
- "mongodb",
14
- "htmx",
15
- "web-framework",
16
- "scaffolding",
17
- "oauth",
18
- "background-jobs",
19
- ]
20
- classifiers = [
21
- "Development Status :: 4 - Beta",
22
- "Intended Audience :: Developers",
23
- "License :: OSI Approved :: MIT License",
24
- "Programming Language :: Python :: 3",
25
- "Programming Language :: Python :: 3.11",
26
- "Programming Language :: Python :: 3.12",
27
- "Programming Language :: Python :: 3.13",
28
- "Programming Language :: Python :: 3.14",
29
- "Framework :: FastAPI",
30
- "Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
31
- "Topic :: Software Development :: Libraries :: Application Frameworks",
32
- ]
33
- dependencies = [
34
- # These are the base dependencies of AllTuner's blessed stack
35
- "aioboto3>=15.5.0",
36
- "arel>=0.4.0",
37
- "asyncer>=0.0.10",
38
- "authlib>=1.6.5",
39
- "beanie[zstd]>=2.0.0",
40
- "click>=8.3.0",
41
- "copier>=9.9.0,<9.9.1",
42
- "email-validator>=2.3.0",
43
- "fastapi[standard-no-fastapi-cloud-cli]>=0.121.0",
44
- "granian[pname]>=2.5.6",
45
- "httpx[http2]>=0.28.1",
46
- "itsdangerous>=2.2.0",
47
- "loguru>=0.7.3",
48
- "pydantic[email]>=2.12.3",
49
- "pydantic-extra-types[pycountry]>=2.10.6",
50
- "pydantic-settings>=2.11.0",
51
- "pyyaml>=6.0.3",
52
- "redis[hiredis]>=7.0.1",
53
- "rich>=14.2.0",
54
- "sse-starlette>=3.0.3",
55
- "starlette-babel>=1.0.3",
56
- "starlette-htmx>=0.1.1",
57
- "streaq[web]<6.0.0",
58
- "typer-slim[standard]>=0.20.0",
59
- ]
60
-
61
- [project.scripts]
62
- vibetuner = "vibetuner.cli:app"
63
-
64
- [project.urls]
65
- Homepage = "https://github.com/alltuner/vibetuner"
66
- Documentation = "https://github.com/alltuner/vibetuner#readme"
67
- Repository = "https://github.com/alltuner/vibetuner"
68
- Issues = "https://github.com/alltuner/vibetuner/issues"
69
-
70
- [project.optional-dependencies]
71
- dev = [
72
- # These are the development dependencies of AllTuner's blessed stack
73
- "babel>=2.17.0",
74
- "cloudflare>=4.3.1",
75
- "djlint>=1.36.4",
76
- "dunamai>=1.25.0",
77
- "gh-bin>=2.81.0",
78
- "granian[pname,reload]>=2.5.6",
79
- "just-bin>=1.43.0",
80
- "pre-commit>=4.3.0",
81
- "pysemver>=0.5.0",
82
- "ruff>=0.14.3",
83
- "rumdl>=0.0.171",
84
- "semver>=3.0.4",
85
- "taplo>=0.9.3",
86
- "ty>=0.0.1a25",
87
- "types-aioboto3[s3,ses]>=15.5.0",
88
- "types-authlib>=1.6.5.20251005",
89
- "types-pyyaml>=6.0.12.20250915",
90
- "uv-bump>=0.3.1",
91
- ]
92
-
93
- [build-system]
94
- requires = ["uv_build>=0.9,<0.10"]
95
- build-backend = "uv_build"