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.
@@ -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,12 @@
1
+ # WebKitchen CLI
2
+
3
+ A CLI tool to manage, collaborate, and deploy web projects.
4
+
5
+ ## Install
6
+ pip install webkitchen
7
+
8
+ ## Commands
9
+ wk startproject
10
+ wk addcollab
11
+ wk joinproject
12
+ 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"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
File without changes