pykickoff 0.1.0__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.
pykickoff/generator.py ADDED
@@ -0,0 +1,12 @@
1
+ import os
2
+ from pathlib import Path
3
+
4
+ def create_structure(answers):
5
+ project_path = Path.cwd() / answers['project_name']
6
+ project_path.mkdir(exist_ok=True)
7
+
8
+ # Example: Create the src folder
9
+ src_path = project_path / "src"
10
+ src_path.mkdir()
11
+
12
+ # More logic to copy templates and fill them with Jinja2...
pykickoff/wizard.py ADDED
@@ -0,0 +1,11 @@
1
+ import questionary
2
+
3
+ def ask_questions():
4
+ answers = {}
5
+ answers['project_name'] = questionary.text("What is your project name?").ask()
6
+ answers['type'] = questionary.select(
7
+ "What type of project?",
8
+ choices=["Basic", "FastAPI", "CLI Tool"]
9
+ ).ask()
10
+ answers['use_git'] = questionary.confirm("Initialize git?").ask()
11
+ return answers
@@ -0,0 +1,55 @@
1
+ Metadata-Version: 2.4
2
+ Name: pykickoff
3
+ Version: 0.1.0
4
+ Summary: Command-line tool designed to take the friction out of starting a new Python project
5
+ Author-email: Devon <ds.pydev@gmail.com>
6
+ Maintainer-email: Devon <ds.pydev@gmail.com>
7
+ Project-URL: Homepage, https://github.com/Devon-GS/pykickoff
8
+ Project-URL: Documentation, https://github.com/Devon-GS/pykickoff
9
+ Keywords: boilerplate,Python Packaging,Template,quick start,Devon-GS,Python
10
+ Classifier: Programming Language :: Python :: 3.10
11
+ Classifier: Programming Language :: Python :: 3.11
12
+ Classifier: Programming Language :: Python :: 3.12
13
+ Classifier: Programming Language :: Python :: 3.13
14
+ Classifier: Programming Language :: Python :: 3.14
15
+ Classifier: Programming Language :: Python :: Implementation :: CPython
16
+ Classifier: Environment :: Console
17
+ Classifier: License :: OSI Approved :: MIT License
18
+ Classifier: Intended Audience :: Developers
19
+ Classifier: Operating System :: POSIX :: Linux
20
+ Classifier: Operating System :: MacOS
21
+ Classifier: Operating System :: MacOS :: MacOS X
22
+ Requires-Python: >=3.9
23
+ Description-Content-Type: text/markdown
24
+ License-File: LICENSE
25
+ Requires-Dist: typer[all]
26
+ Requires-Dist: questionary
27
+ Requires-Dist: jinja2
28
+ Requires-Dist: rich
29
+ Dynamic: license-file
30
+
31
+ Project Structure
32
+
33
+ pylaunch/
34
+ ├── src/
35
+ │ └── pylaunch/
36
+ │ ├── __init__.py
37
+ │ ├── main.py # The CLI entry point (Typer/Click logic)
38
+ │ ├── wizard.py # The questions (Questionary logic)
39
+ │ ├── generator.py # The logic that creates folders and files
40
+ │ ├── utils.py # Helper functions (git init, venv creation)
41
+ │ └── templates/ # Folder containing your blueprints
42
+ │ ├── base/ # Files every project gets (.gitignore, README)
43
+ │ │ ├── README.md.j2
44
+ │ │ └── gitignore.txt
45
+ │ ├── fastapi/ # Specific to API projects
46
+ │ │ ├── main.py.j2
47
+ │ │ └── requirements.txt.j2
48
+ │ └── cli/ # Specific to CLI projects
49
+ │ └── cli_main.py.j2
50
+ ├── tests/ # Essential! You're dealing with File I/O
51
+ │ ├── __init__.py
52
+ │ └── test_generator.py
53
+ ├── pyproject.toml # Defines your package and dependencies
54
+ ├── README.md
55
+ └── .gitignore
@@ -0,0 +1,8 @@
1
+ pykickoff/generator.py,sha256=QRUB_hWT4XuKxl9TpMCMEkmeFrVDTFmULYoBV5z65Fs,339
2
+ pykickoff/wizard.py,sha256=UNUca2W8BdhDrnRLw20s0sSAz0e_YDNL4AM4pxV5JNY,375
3
+ pykickoff-0.1.0.dist-info/licenses/LICENSE,sha256=7zLy40zeqQVZdUzzfNZUr08tlfcP03_cBhjnI3mAdNo,1083
4
+ pykickoff-0.1.0.dist-info/METADATA,sha256=DaiWghdj5R1sityTpMnMpj7HWTL-EDw-QUyxpuDM7D8,2463
5
+ pykickoff-0.1.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
6
+ pykickoff-0.1.0.dist-info/entry_points.txt,sha256=cY0YM9DE8okFoQ1sxr7GS6MBYmGeFH3mbQV7FOyyLpw,47
7
+ pykickoff-0.1.0.dist-info/top_level.txt,sha256=Kt3GOeIYLivGvYQtgSRn43tWSn8t22W-Axqs2zzOfOA,10
8
+ pykickoff-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ pylaunch = pylaunch.main:app
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Devon
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 @@
1
+ pykickoff