pykickoff 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.
@@ -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,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,25 @@
1
+ Project Structure
2
+
3
+ pylaunch/
4
+ ├── src/
5
+ │ └── pylaunch/
6
+ │ ├── __init__.py
7
+ │ ├── main.py # The CLI entry point (Typer/Click logic)
8
+ │ ├── wizard.py # The questions (Questionary logic)
9
+ │ ├── generator.py # The logic that creates folders and files
10
+ │ ├── utils.py # Helper functions (git init, venv creation)
11
+ │ └── templates/ # Folder containing your blueprints
12
+ │ ├── base/ # Files every project gets (.gitignore, README)
13
+ │ │ ├── README.md.j2
14
+ │ │ └── gitignore.txt
15
+ │ ├── fastapi/ # Specific to API projects
16
+ │ │ ├── main.py.j2
17
+ │ │ └── requirements.txt.j2
18
+ │ └── cli/ # Specific to CLI projects
19
+ │ └── cli_main.py.j2
20
+ ├── tests/ # Essential! You're dealing with File I/O
21
+ │ ├── __init__.py
22
+ │ └── test_generator.py
23
+ ├── pyproject.toml # Defines your package and dependencies
24
+ ├── README.md
25
+ └── .gitignore
@@ -0,0 +1,54 @@
1
+ [build-system]
2
+ requires = ["setuptools>=69.0.3", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "pykickoff"
7
+ version = "0.1.0"
8
+ requires-python = ">=3.9"
9
+ readme = "README.md"
10
+ description = "Command-line tool designed to take the friction out of starting a new Python project"
11
+ authors = [
12
+ {name = "Devon", email = "ds.pydev@gmail.com"},
13
+ ]
14
+ maintainers = [
15
+ {name = "Devon", email = "ds.pydev@gmail.com"}
16
+ ]
17
+ license = {file = "LICENSE.txt"}
18
+ keywords = [
19
+ "boilerplate",
20
+ "Python Packaging",
21
+ "Template",
22
+ "quick start",
23
+ "Devon-GS",
24
+ "Python"
25
+ ]
26
+ classifiers = [
27
+ "Programming Language :: Python :: 3.10",
28
+ "Programming Language :: Python :: 3.11",
29
+ "Programming Language :: Python :: 3.12",
30
+ "Programming Language :: Python :: 3.13",
31
+ "Programming Language :: Python :: 3.14",
32
+ "Programming Language :: Python :: Implementation :: CPython",
33
+ "Environment :: Console",
34
+ "License :: OSI Approved :: MIT License",
35
+ "Intended Audience :: Developers",
36
+ "Operating System :: POSIX :: Linux",
37
+ # "Operating System :: Microsoft :: Windows",
38
+ "Operating System :: MacOS",
39
+ "Operating System :: MacOS :: MacOS X",
40
+ ]
41
+
42
+ dependencies = [
43
+ "typer[all]", # For the CLI
44
+ "questionary", # For the pretty interactive questions
45
+ "jinja2", # For filling out the templates
46
+ "rich" # For beautiful colors/tables
47
+ ]
48
+
49
+ [project.urls]
50
+ Homepage = "https://github.com/Devon-GS/pykickoff"
51
+ Documentation = "https://github.com/Devon-GS/pykickoff"
52
+
53
+ [project.scripts]
54
+ pylaunch = "pylaunch.main:app" # This makes 'pykickoff' a command in your terminal
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -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...
@@ -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,11 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ src/pykickoff/generator.py
5
+ src/pykickoff/wizard.py
6
+ src/pykickoff.egg-info/PKG-INFO
7
+ src/pykickoff.egg-info/SOURCES.txt
8
+ src/pykickoff.egg-info/dependency_links.txt
9
+ src/pykickoff.egg-info/entry_points.txt
10
+ src/pykickoff.egg-info/requires.txt
11
+ src/pykickoff.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ pylaunch = pylaunch.main:app
@@ -0,0 +1,4 @@
1
+ typer[all]
2
+ questionary
3
+ jinja2
4
+ rich
@@ -0,0 +1 @@
1
+ pykickoff