roastbuddy 0.1.0__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.
Files changed (31) hide show
  1. roastbuddy-0.1.0/LICENSE +21 -0
  2. roastbuddy-0.1.0/PKG-INFO +303 -0
  3. roastbuddy-0.1.0/README.md +269 -0
  4. roastbuddy-0.1.0/pyproject.toml +63 -0
  5. roastbuddy-0.1.0/setup.cfg +4 -0
  6. roastbuddy-0.1.0/src/roastbuddy/__init__.py +5 -0
  7. roastbuddy-0.1.0/src/roastbuddy/cli.py +113 -0
  8. roastbuddy-0.1.0/src/roastbuddy/core/__init__.py +1 -0
  9. roastbuddy-0.1.0/src/roastbuddy/core/config.py +96 -0
  10. roastbuddy-0.1.0/src/roastbuddy/core/database.py +198 -0
  11. roastbuddy-0.1.0/src/roastbuddy/core/history.py +40 -0
  12. roastbuddy-0.1.0/src/roastbuddy/core/initializer.py +61 -0
  13. roastbuddy-0.1.0/src/roastbuddy/core/roaster.py +130 -0
  14. roastbuddy-0.1.0/src/roastbuddy/core/share.py +18 -0
  15. roastbuddy-0.1.0/src/roastbuddy/core/status.py +64 -0
  16. roastbuddy-0.1.0/src/roastbuddy/core/streaks.py +22 -0
  17. roastbuddy-0.1.0/src/roastbuddy/templates/__init__.py +1 -0
  18. roastbuddy-0.1.0/src/roastbuddy/templates/praise_templates.py +113 -0
  19. roastbuddy-0.1.0/src/roastbuddy/templates/roast_templates.py +87 -0
  20. roastbuddy-0.1.0/src/roastbuddy/utils/__init__.py +1 -0
  21. roastbuddy-0.1.0/src/roastbuddy/utils/code_analysis.py +164 -0
  22. roastbuddy-0.1.0/src/roastbuddy/utils/copilot_utils.py +106 -0
  23. roastbuddy-0.1.0/src/roastbuddy/utils/git_utils.py +201 -0
  24. roastbuddy-0.1.0/src/roastbuddy.egg-info/PKG-INFO +303 -0
  25. roastbuddy-0.1.0/src/roastbuddy.egg-info/SOURCES.txt +29 -0
  26. roastbuddy-0.1.0/src/roastbuddy.egg-info/dependency_links.txt +1 -0
  27. roastbuddy-0.1.0/src/roastbuddy.egg-info/entry_points.txt +2 -0
  28. roastbuddy-0.1.0/src/roastbuddy.egg-info/requires.txt +11 -0
  29. roastbuddy-0.1.0/src/roastbuddy.egg-info/top_level.txt +1 -0
  30. roastbuddy-0.1.0/tests/test_cli.py +36 -0
  31. roastbuddy-0.1.0/tests/test_git_utils.py +20 -0
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 RoastBuddy Team
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.
@@ -0,0 +1,303 @@
1
+ Metadata-Version: 2.4
2
+ Name: roastbuddy
3
+ Version: 0.1.0
4
+ Summary: A fun, interactive CLI companion that roasts and praises your code
5
+ Author: RoastBuddy Team
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/roastbuddy/roastbuddy
8
+ Project-URL: Repository, https://github.com/roastbuddy/roastbuddy
9
+ Project-URL: Issues, https://github.com/roastbuddy/roastbuddy/issues
10
+ Keywords: cli,git,developer-tools,fun,roast,coding-companion
11
+ Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.8
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Requires-Python: >=3.8
21
+ Description-Content-Type: text/markdown
22
+ License-File: LICENSE
23
+ Requires-Dist: click>=8.1.0
24
+ Requires-Dist: gitpython>=3.1.0
25
+ Requires-Dist: pyyaml>=6.0
26
+ Requires-Dist: rich>=13.0.0
27
+ Provides-Extra: dev
28
+ Requires-Dist: pytest>=7.0.0; extra == "dev"
29
+ Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
30
+ Requires-Dist: black>=23.0.0; extra == "dev"
31
+ Requires-Dist: flake8>=6.0.0; extra == "dev"
32
+ Requires-Dist: mypy>=1.0.0; extra == "dev"
33
+ Dynamic: license-file
34
+
35
+ # ๐Ÿ”ฅ RoastBuddy
36
+
37
+ **Your witty coding companion that roasts, praises, and tracks your development journey!**
38
+
39
+ RoastBuddy is a fun, interactive CLI tool that observes your git activity and gives you humorous roasts and genuine praise. It tracks your coding streaks, monitors code quality, and helps you generate shareable brag content for social media.
40
+
41
+ ## โœจ Features
42
+
43
+ - ๐ŸŽญ **Smart Roasts & Praise**: Context-aware commentary on your commits using GitHub Copilot CLI or built-in templates
44
+ - ๐Ÿ”ฅ **Streak Tracking**: Monitor clean commits, daily coding habits, and test pass rates *(coming soon)*
45
+ - ๐Ÿ“Š **Code Quality Insights**: Track your coding trends and improvements over time
46
+ - ๐ŸŽจ **Beautiful CLI**: Rich, colorful terminal output with emojis and ASCII art
47
+ - ๐Ÿ“œ **History Tracking**: View all your past roasts and praises
48
+ - โš™๏ธ **Configurable**: Customize roast intensity, AI usage, and more
49
+ - ๐Ÿš€ **Shareable Content**: Generate LinkedIn, Twitter, and GitHub-ready summaries *(coming soon)*
50
+ - ๐Ÿช **Git Hooks**: Optional auto-roast on every commit *(coming soon)*
51
+ - ๐Ÿ”’ **Privacy First**: All data stays local, no telemetry
52
+
53
+ ## ๐Ÿš€ Quick Start
54
+
55
+ ### Installation
56
+
57
+ ```bash
58
+ # Clone the repository
59
+ git clone https://github.com/yourusername/roastbuddy.git
60
+ cd roastbuddy
61
+
62
+ # Install in development mode
63
+ python3 -m venv venv
64
+ source venv/bin/activate # On Windows: venv\Scripts\activate
65
+ pip install -e .
66
+ ```
67
+
68
+ ### Initialize in Your Repository
69
+
70
+ ```bash
71
+ cd your-project
72
+ roastbuddy init
73
+ ```
74
+
75
+ ### Get Your First Roast!
76
+
77
+ ```bash
78
+ # Make a commit first
79
+ git commit -m "your commit message"
80
+
81
+ # Then get roasted!
82
+ roastbuddy roast
83
+
84
+ # Or get some praise
85
+ roastbuddy praise
86
+
87
+ # Check your stats
88
+ roastbuddy status
89
+
90
+ # View history
91
+ roastbuddy history
92
+ ```
93
+
94
+ ## ๐Ÿ“– Commands
95
+
96
+ ### `roastbuddy init`
97
+ Initialize RoastBuddy in a git repository. Creates configuration and database files.
98
+
99
+ ```bash
100
+ roastbuddy init
101
+ ```
102
+
103
+ ### `roastbuddy roast`
104
+ Get a witty roast based on your last commit!
105
+
106
+ ```bash
107
+ roastbuddy roast
108
+ ```
109
+
110
+ Example output:
111
+ ```
112
+ ๐Ÿ”ฅ Your Roast
113
+
114
+ ๐Ÿ™„ 'fixed stuff' - ah yes, the ancient art of commit message poetry.
115
+ Shakespeare would be proud... NOT! Try being specific next time. ๐Ÿ“
116
+ ```
117
+
118
+ ### `roastbuddy praise`
119
+ Receive well-deserved praise for your work!
120
+
121
+ ```bash
122
+ roastbuddy praise
123
+ ```
124
+
125
+ Example output:
126
+ ```
127
+ โœจ Your Praise
128
+
129
+ โœจ Beautiful commit! Clear message, focused changes, and just the right size.
130
+ You're a git wizard! ๐Ÿง™โ€โ™‚๏ธ
131
+ ```
132
+
133
+ ### `roastbuddy status`
134
+ View repository statistics and activity summary.
135
+
136
+ ```bash
137
+ roastbuddy status
138
+ ```
139
+
140
+ Shows:
141
+ - Last commit information
142
+ - Total commits analyzed
143
+ - Clean commit ratio
144
+ - Average files and lines per commit
145
+ - GitHub Copilot availability
146
+
147
+ ### `roastbuddy history`
148
+ View your roast and praise history.
149
+
150
+ ```bash
151
+ roastbuddy history --limit 20
152
+ ```
153
+
154
+ ### `roastbuddy config`
155
+ Manage RoastBuddy configuration.
156
+
157
+ ```bash
158
+ # Show current configuration
159
+ roastbuddy config --show
160
+
161
+ # Set a configuration value
162
+ roastbuddy config --set roast_intensity spicy
163
+ roastbuddy config --set use_copilot never
164
+ ```
165
+
166
+ Configuration options:
167
+ - `roast_intensity`: `light`, `medium`, or `spicy`
168
+ - `use_copilot`: `auto`, `always`, or `never`
169
+ - `enable_streaks`: `true` or `false`
170
+ - `show_emojis`: `true` or `false`
171
+ - `auto_roast_on_commit`: `true` or `false` *(git hooks, coming soon)*
172
+
173
+ ## ๐Ÿค– GitHub Copilot Integration
174
+
175
+ RoastBuddy works with or without GitHub Copilot CLI:
176
+
177
+ - **With Copilot**: Get dynamic, AI-powered roasts and praise tailored to your specific commits
178
+ - **Without Copilot**: Use built-in template system with dozens of witty responses
179
+
180
+ ### Installing GitHub Copilot CLI (Optional)
181
+
182
+ 1. Install GitHub CLI: https://cli.github.com/
183
+ 2. Install Copilot extension:
184
+ ```bash
185
+ gh extension install github/gh-copilot
186
+ ```
187
+
188
+ RoastBuddy will automatically detect and use Copilot when available!
189
+
190
+ ## ๐ŸŽฏ What Makes a "Clean" Commit?
191
+
192
+ RoastBuddy evaluates commits based on:
193
+
194
+ โœ… **Good Commits:**
195
+ - Descriptive message (>10 characters)
196
+ - Reasonable size (<200 lines)
197
+ - Focused changes (โ‰ค5 files)
198
+ - Clear intent and purpose
199
+
200
+ โŒ **Roast-worthy Commits:**
201
+ - Vague messages ("fix", "update", "stuff")
202
+ - WIP indicators in message
203
+ - Massive changes (>500 lines)
204
+ - Too many files changed (>15)
205
+
206
+ ## ๐Ÿ“Š Example Session
207
+
208
+ ```bash
209
+ $ roastbuddy init
210
+ ๐Ÿ”ฅ Initializing RoastBuddy...
211
+ โœ… RoastBuddy is ready to roast!
212
+
213
+ $ git commit -m "wip"
214
+ [main 1a2b3c4] wip
215
+ 1 file changed, 2 insertions(+)
216
+
217
+ $ roastbuddy roast
218
+ ๐Ÿ”ฅ Your Roast
219
+
220
+ ๐ŸŽญ 'WIP' - Working In Progress? More like 'Why Is Perfection'
221
+ so hard to achieve! Clean up that message! โœจ
222
+
223
+ $ git commit -m "Implement user authentication with JWT tokens and refresh logic"
224
+ [main 5d6e7f8] Implement user authentication...
225
+
226
+ $ roastbuddy praise
227
+ โœจ Your Praise
228
+
229
+ โœจ Beautiful commit! Clear message, focused changes, and just the
230
+ right size. You're a git wizard! ๐Ÿง™โ€โ™‚๏ธ
231
+
232
+ $ roastbuddy status
233
+ ๐Ÿ“Š Repository Status
234
+
235
+ Last Commit: 5d6e7f8 - Implement user authentication with JWT...
236
+ Files: 3 | Lines: +145 -12
237
+
238
+ Statistics (last 10 commits):
239
+ Total Commits 10
240
+ Clean Commits 7 (70%)
241
+ Avg Files/Commit 3.2
242
+ Avg Lines/Commit 87
243
+ GitHub Copilot โœ… Available
244
+ ```
245
+
246
+ ## ๐Ÿงช Running Tests
247
+
248
+ ```bash
249
+ # Install development dependencies
250
+ pip install -r requirements-dev.txt
251
+
252
+ # Run tests
253
+ pytest
254
+
255
+ # Run with coverage
256
+ pytest --cov=roastbuddy
257
+ ```
258
+
259
+ ## ๐Ÿ“‹ Requirements
260
+
261
+ - Python 3.8+
262
+ - Git repository
263
+ - (Optional) GitHub Copilot CLI for AI-powered roasts
264
+
265
+ ## ๐Ÿ›ฃ๏ธ Roadmap
266
+
267
+ - โœ… Phase 1: Core CLI and configuration
268
+ - โœ… Phase 2: Git integration and analysis
269
+ - โœ… Phase 3: Copilot CLI integration
270
+ - โœ… Phase 4: Fallback template system
271
+ - ๐Ÿšง Phase 5: Streak tracking
272
+ - ๐Ÿšง Phase 6: Git hooks integration
273
+ - ๐Ÿšง Phase 7: Shareable social media content
274
+ - ๐Ÿšง Phase 8: Extended testing and polish
275
+ - ๐Ÿšง Phase 9: PyPI package distribution
276
+
277
+ ## ๐Ÿค Contributing
278
+
279
+ Contributions welcome! Please feel free to submit a Pull Request.
280
+
281
+ ### Development Setup
282
+
283
+ ```bash
284
+ git clone https://github.com/yourusername/roastbuddy.git
285
+ cd roastbuddy
286
+ python3 -m venv venv
287
+ source venv/bin/activate
288
+ pip install -e ".[dev]"
289
+ ```
290
+
291
+ ## ๐Ÿ“œ License
292
+
293
+ MIT License - See LICENSE file for details
294
+
295
+ ## ๐ŸŽ‰ Credits
296
+
297
+ Built with love, Python, and a healthy dose of sarcasm by developers who believe coding should be fun!
298
+
299
+ ---
300
+
301
+ **Made with โค๏ธ and a healthy dose of sarcasm**
302
+
303
+ *Remember: RoastBuddy roasts your code, not you! All feedback is meant to be fun and educational.* ๐Ÿ˜Š
@@ -0,0 +1,269 @@
1
+ # ๐Ÿ”ฅ RoastBuddy
2
+
3
+ **Your witty coding companion that roasts, praises, and tracks your development journey!**
4
+
5
+ RoastBuddy is a fun, interactive CLI tool that observes your git activity and gives you humorous roasts and genuine praise. It tracks your coding streaks, monitors code quality, and helps you generate shareable brag content for social media.
6
+
7
+ ## โœจ Features
8
+
9
+ - ๐ŸŽญ **Smart Roasts & Praise**: Context-aware commentary on your commits using GitHub Copilot CLI or built-in templates
10
+ - ๐Ÿ”ฅ **Streak Tracking**: Monitor clean commits, daily coding habits, and test pass rates *(coming soon)*
11
+ - ๐Ÿ“Š **Code Quality Insights**: Track your coding trends and improvements over time
12
+ - ๐ŸŽจ **Beautiful CLI**: Rich, colorful terminal output with emojis and ASCII art
13
+ - ๐Ÿ“œ **History Tracking**: View all your past roasts and praises
14
+ - โš™๏ธ **Configurable**: Customize roast intensity, AI usage, and more
15
+ - ๐Ÿš€ **Shareable Content**: Generate LinkedIn, Twitter, and GitHub-ready summaries *(coming soon)*
16
+ - ๐Ÿช **Git Hooks**: Optional auto-roast on every commit *(coming soon)*
17
+ - ๐Ÿ”’ **Privacy First**: All data stays local, no telemetry
18
+
19
+ ## ๐Ÿš€ Quick Start
20
+
21
+ ### Installation
22
+
23
+ ```bash
24
+ # Clone the repository
25
+ git clone https://github.com/yourusername/roastbuddy.git
26
+ cd roastbuddy
27
+
28
+ # Install in development mode
29
+ python3 -m venv venv
30
+ source venv/bin/activate # On Windows: venv\Scripts\activate
31
+ pip install -e .
32
+ ```
33
+
34
+ ### Initialize in Your Repository
35
+
36
+ ```bash
37
+ cd your-project
38
+ roastbuddy init
39
+ ```
40
+
41
+ ### Get Your First Roast!
42
+
43
+ ```bash
44
+ # Make a commit first
45
+ git commit -m "your commit message"
46
+
47
+ # Then get roasted!
48
+ roastbuddy roast
49
+
50
+ # Or get some praise
51
+ roastbuddy praise
52
+
53
+ # Check your stats
54
+ roastbuddy status
55
+
56
+ # View history
57
+ roastbuddy history
58
+ ```
59
+
60
+ ## ๐Ÿ“– Commands
61
+
62
+ ### `roastbuddy init`
63
+ Initialize RoastBuddy in a git repository. Creates configuration and database files.
64
+
65
+ ```bash
66
+ roastbuddy init
67
+ ```
68
+
69
+ ### `roastbuddy roast`
70
+ Get a witty roast based on your last commit!
71
+
72
+ ```bash
73
+ roastbuddy roast
74
+ ```
75
+
76
+ Example output:
77
+ ```
78
+ ๐Ÿ”ฅ Your Roast
79
+
80
+ ๐Ÿ™„ 'fixed stuff' - ah yes, the ancient art of commit message poetry.
81
+ Shakespeare would be proud... NOT! Try being specific next time. ๐Ÿ“
82
+ ```
83
+
84
+ ### `roastbuddy praise`
85
+ Receive well-deserved praise for your work!
86
+
87
+ ```bash
88
+ roastbuddy praise
89
+ ```
90
+
91
+ Example output:
92
+ ```
93
+ โœจ Your Praise
94
+
95
+ โœจ Beautiful commit! Clear message, focused changes, and just the right size.
96
+ You're a git wizard! ๐Ÿง™โ€โ™‚๏ธ
97
+ ```
98
+
99
+ ### `roastbuddy status`
100
+ View repository statistics and activity summary.
101
+
102
+ ```bash
103
+ roastbuddy status
104
+ ```
105
+
106
+ Shows:
107
+ - Last commit information
108
+ - Total commits analyzed
109
+ - Clean commit ratio
110
+ - Average files and lines per commit
111
+ - GitHub Copilot availability
112
+
113
+ ### `roastbuddy history`
114
+ View your roast and praise history.
115
+
116
+ ```bash
117
+ roastbuddy history --limit 20
118
+ ```
119
+
120
+ ### `roastbuddy config`
121
+ Manage RoastBuddy configuration.
122
+
123
+ ```bash
124
+ # Show current configuration
125
+ roastbuddy config --show
126
+
127
+ # Set a configuration value
128
+ roastbuddy config --set roast_intensity spicy
129
+ roastbuddy config --set use_copilot never
130
+ ```
131
+
132
+ Configuration options:
133
+ - `roast_intensity`: `light`, `medium`, or `spicy`
134
+ - `use_copilot`: `auto`, `always`, or `never`
135
+ - `enable_streaks`: `true` or `false`
136
+ - `show_emojis`: `true` or `false`
137
+ - `auto_roast_on_commit`: `true` or `false` *(git hooks, coming soon)*
138
+
139
+ ## ๐Ÿค– GitHub Copilot Integration
140
+
141
+ RoastBuddy works with or without GitHub Copilot CLI:
142
+
143
+ - **With Copilot**: Get dynamic, AI-powered roasts and praise tailored to your specific commits
144
+ - **Without Copilot**: Use built-in template system with dozens of witty responses
145
+
146
+ ### Installing GitHub Copilot CLI (Optional)
147
+
148
+ 1. Install GitHub CLI: https://cli.github.com/
149
+ 2. Install Copilot extension:
150
+ ```bash
151
+ gh extension install github/gh-copilot
152
+ ```
153
+
154
+ RoastBuddy will automatically detect and use Copilot when available!
155
+
156
+ ## ๐ŸŽฏ What Makes a "Clean" Commit?
157
+
158
+ RoastBuddy evaluates commits based on:
159
+
160
+ โœ… **Good Commits:**
161
+ - Descriptive message (>10 characters)
162
+ - Reasonable size (<200 lines)
163
+ - Focused changes (โ‰ค5 files)
164
+ - Clear intent and purpose
165
+
166
+ โŒ **Roast-worthy Commits:**
167
+ - Vague messages ("fix", "update", "stuff")
168
+ - WIP indicators in message
169
+ - Massive changes (>500 lines)
170
+ - Too many files changed (>15)
171
+
172
+ ## ๐Ÿ“Š Example Session
173
+
174
+ ```bash
175
+ $ roastbuddy init
176
+ ๐Ÿ”ฅ Initializing RoastBuddy...
177
+ โœ… RoastBuddy is ready to roast!
178
+
179
+ $ git commit -m "wip"
180
+ [main 1a2b3c4] wip
181
+ 1 file changed, 2 insertions(+)
182
+
183
+ $ roastbuddy roast
184
+ ๐Ÿ”ฅ Your Roast
185
+
186
+ ๐ŸŽญ 'WIP' - Working In Progress? More like 'Why Is Perfection'
187
+ so hard to achieve! Clean up that message! โœจ
188
+
189
+ $ git commit -m "Implement user authentication with JWT tokens and refresh logic"
190
+ [main 5d6e7f8] Implement user authentication...
191
+
192
+ $ roastbuddy praise
193
+ โœจ Your Praise
194
+
195
+ โœจ Beautiful commit! Clear message, focused changes, and just the
196
+ right size. You're a git wizard! ๐Ÿง™โ€โ™‚๏ธ
197
+
198
+ $ roastbuddy status
199
+ ๐Ÿ“Š Repository Status
200
+
201
+ Last Commit: 5d6e7f8 - Implement user authentication with JWT...
202
+ Files: 3 | Lines: +145 -12
203
+
204
+ Statistics (last 10 commits):
205
+ Total Commits 10
206
+ Clean Commits 7 (70%)
207
+ Avg Files/Commit 3.2
208
+ Avg Lines/Commit 87
209
+ GitHub Copilot โœ… Available
210
+ ```
211
+
212
+ ## ๐Ÿงช Running Tests
213
+
214
+ ```bash
215
+ # Install development dependencies
216
+ pip install -r requirements-dev.txt
217
+
218
+ # Run tests
219
+ pytest
220
+
221
+ # Run with coverage
222
+ pytest --cov=roastbuddy
223
+ ```
224
+
225
+ ## ๐Ÿ“‹ Requirements
226
+
227
+ - Python 3.8+
228
+ - Git repository
229
+ - (Optional) GitHub Copilot CLI for AI-powered roasts
230
+
231
+ ## ๐Ÿ›ฃ๏ธ Roadmap
232
+
233
+ - โœ… Phase 1: Core CLI and configuration
234
+ - โœ… Phase 2: Git integration and analysis
235
+ - โœ… Phase 3: Copilot CLI integration
236
+ - โœ… Phase 4: Fallback template system
237
+ - ๐Ÿšง Phase 5: Streak tracking
238
+ - ๐Ÿšง Phase 6: Git hooks integration
239
+ - ๐Ÿšง Phase 7: Shareable social media content
240
+ - ๐Ÿšง Phase 8: Extended testing and polish
241
+ - ๐Ÿšง Phase 9: PyPI package distribution
242
+
243
+ ## ๐Ÿค Contributing
244
+
245
+ Contributions welcome! Please feel free to submit a Pull Request.
246
+
247
+ ### Development Setup
248
+
249
+ ```bash
250
+ git clone https://github.com/yourusername/roastbuddy.git
251
+ cd roastbuddy
252
+ python3 -m venv venv
253
+ source venv/bin/activate
254
+ pip install -e ".[dev]"
255
+ ```
256
+
257
+ ## ๐Ÿ“œ License
258
+
259
+ MIT License - See LICENSE file for details
260
+
261
+ ## ๐ŸŽ‰ Credits
262
+
263
+ Built with love, Python, and a healthy dose of sarcasm by developers who believe coding should be fun!
264
+
265
+ ---
266
+
267
+ **Made with โค๏ธ and a healthy dose of sarcasm**
268
+
269
+ *Remember: RoastBuddy roasts your code, not you! All feedback is meant to be fun and educational.* ๐Ÿ˜Š
@@ -0,0 +1,63 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "roastbuddy"
7
+ version = "0.1.0"
8
+ description = "A fun, interactive CLI companion that roasts and praises your code"
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ license = {text = "MIT"}
12
+ authors = [
13
+ {name = "RoastBuddy Team"}
14
+ ]
15
+ keywords = ["cli", "git", "developer-tools", "fun", "roast", "coding-companion"]
16
+ classifiers = [
17
+ "Development Status :: 3 - Alpha",
18
+ "Intended Audience :: Developers",
19
+ "License :: OSI Approved :: MIT License",
20
+ "Programming Language :: Python :: 3",
21
+ "Programming Language :: Python :: 3.8",
22
+ "Programming Language :: Python :: 3.9",
23
+ "Programming Language :: Python :: 3.10",
24
+ "Programming Language :: Python :: 3.11",
25
+ "Programming Language :: Python :: 3.12",
26
+ ]
27
+
28
+ dependencies = [
29
+ "click>=8.1.0",
30
+ "gitpython>=3.1.0",
31
+ "pyyaml>=6.0",
32
+ "rich>=13.0.0",
33
+ ]
34
+
35
+ [project.optional-dependencies]
36
+ dev = [
37
+ "pytest>=7.0.0",
38
+ "pytest-cov>=4.0.0",
39
+ "black>=23.0.0",
40
+ "flake8>=6.0.0",
41
+ "mypy>=1.0.0",
42
+ ]
43
+
44
+ [project.scripts]
45
+ roastbuddy = "roastbuddy.cli:main"
46
+
47
+ [project.urls]
48
+ Homepage = "https://github.com/roastbuddy/roastbuddy"
49
+ Repository = "https://github.com/roastbuddy/roastbuddy"
50
+ Issues = "https://github.com/roastbuddy/roastbuddy/issues"
51
+
52
+ [tool.setuptools.packages.find]
53
+ where = ["src"]
54
+
55
+ [tool.black]
56
+ line-length = 100
57
+ target-version = ["py38", "py39", "py310", "py311", "py312"]
58
+
59
+ [tool.pytest.ini_options]
60
+ testpaths = ["tests"]
61
+ python_files = ["test_*.py"]
62
+ python_functions = ["test_*"]
63
+ addopts = "-v --cov=roastbuddy --cov-report=term-missing"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,5 @@
1
+ """RoastBuddy - Your witty coding companion."""
2
+
3
+ __version__ = "0.1.0"
4
+ __author__ = "RoastBuddy Team"
5
+ __description__ = "A fun, interactive CLI companion that roasts and praises your code"