webkitchen 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.
- webkitchen-0.1.0/PKG-INFO +26 -0
- webkitchen-0.1.0/README.md +12 -0
- webkitchen-0.1.0/pyproject.toml +37 -0
- webkitchen-0.1.0/setup.cfg +4 -0
- webkitchen-0.1.0/webkitchen/__init__.py +0 -0
- webkitchen-0.1.0/webkitchen/cli.py +1576 -0
- webkitchen-0.1.0/webkitchen/wk_server/__init__.py +0 -0
- webkitchen-0.1.0/webkitchen/wk_server/auth.py +42 -0
- webkitchen-0.1.0/webkitchen/wk_server/server.py +352 -0
- webkitchen-0.1.0/webkitchen.egg-info/PKG-INFO +26 -0
- webkitchen-0.1.0/webkitchen.egg-info/SOURCES.txt +13 -0
- webkitchen-0.1.0/webkitchen.egg-info/dependency_links.txt +1 -0
- webkitchen-0.1.0/webkitchen.egg-info/entry_points.txt +2 -0
- webkitchen-0.1.0/webkitchen.egg-info/requires.txt +2 -0
- webkitchen-0.1.0/webkitchen.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: webkitchen
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A CLI tool to manage, collaborate, and deploy web projects easily
|
|
5
|
+
Author: Udit N. Khare, Rama Khare, Swara Verma, Apoorv Verma
|
|
6
|
+
Keywords: cli,web,deployment,developer-tools,automation
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.8
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
Requires-Dist: typer
|
|
13
|
+
Requires-Dist: requests
|
|
14
|
+
|
|
15
|
+
# WebKitchen CLI
|
|
16
|
+
|
|
17
|
+
A CLI tool to manage, collaborate, and deploy web projects.
|
|
18
|
+
|
|
19
|
+
## Install
|
|
20
|
+
pip install webkitchen
|
|
21
|
+
|
|
22
|
+
## Commands
|
|
23
|
+
wk startproject
|
|
24
|
+
wk addcollab
|
|
25
|
+
wk joinproject
|
|
26
|
+
wk publish
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "webkitchen"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "A CLI tool to manage, collaborate, and deploy web projects easily"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.8"
|
|
7
|
+
|
|
8
|
+
authors = [
|
|
9
|
+
{ name = "Udit N. Khare" },
|
|
10
|
+
{ name = "Rama Khare" },
|
|
11
|
+
{ name = "Swara Verma" },
|
|
12
|
+
{ name = "Apoorv Verma" }
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
dependencies = [
|
|
18
|
+
"typer",
|
|
19
|
+
"requests"
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
keywords = ["cli", "web", "deployment", "developer-tools", "automation"]
|
|
23
|
+
|
|
24
|
+
classifiers = [
|
|
25
|
+
"Programming Language :: Python :: 3",
|
|
26
|
+
"License :: OSI Approved :: MIT License",
|
|
27
|
+
"Operating System :: OS Independent"
|
|
28
|
+
]
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
[project.scripts]
|
|
32
|
+
wk = "webkitchen.cli:app"
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
[build-system]
|
|
36
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
37
|
+
build-backend = "setuptools.build_meta"
|
|
File without changes
|