wp-docker 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 Dock
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,41 @@
1
+ Metadata-Version: 2.4
2
+ Name: wp-docker
3
+ Version: 0.1.0
4
+ Summary: WordPress Docker Installer CLI tool with Docker setup and preconfigured theme
5
+ Author: Jacek Labudda
6
+ License: MIT
7
+ Keywords: wordpress,docker,installer,cli,wp
8
+ Requires-Python: >=3.9
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE
11
+ Requires-Dist: python-dotenv>=1.0.0
12
+ Dynamic: license-file
13
+ Dynamic: requires-python
14
+
15
+ # WP Docker CLI
16
+
17
+ **WP Docker CLI** to narzędzie do szybkiego tworzenia projektów WordPress z Dockerem.
18
+ Automatyzuje:
19
+
20
+ - pobranie najnowszego WordPressa
21
+ - kopiowanie własnego theme
22
+ - generowanie `.env`
23
+ - uruchomienie Docker Compose
24
+ - aktywację theme w kontenerze APP
25
+ - inicjalizację repozytorium Git i push do remote
26
+
27
+ ---
28
+
29
+ ## Instalacja
30
+
31
+ ```bash
32
+ pip install wp-docker-cli
33
+ ```
34
+
35
+ ## Użycie
36
+
37
+ Tworzenie nowego projektu:
38
+
39
+ ```bash
40
+ wp-docker init "Nazwa Projektu"
41
+ ```
@@ -0,0 +1,27 @@
1
+ # WP Docker CLI
2
+
3
+ **WP Docker CLI** to narzędzie do szybkiego tworzenia projektów WordPress z Dockerem.
4
+ Automatyzuje:
5
+
6
+ - pobranie najnowszego WordPressa
7
+ - kopiowanie własnego theme
8
+ - generowanie `.env`
9
+ - uruchomienie Docker Compose
10
+ - aktywację theme w kontenerze APP
11
+ - inicjalizację repozytorium Git i push do remote
12
+
13
+ ---
14
+
15
+ ## Instalacja
16
+
17
+ ```bash
18
+ pip install wp-docker-cli
19
+ ```
20
+
21
+ ## Użycie
22
+
23
+ Tworzenie nowego projektu:
24
+
25
+ ```bash
26
+ wp-docker init "Nazwa Projektu"
27
+ ```
@@ -0,0 +1,21 @@
1
+ [project]
2
+ name = "wp-docker"
3
+ version = "0.1.0"
4
+ description = "WordPress Docker Installer CLI tool with Docker setup and preconfigured theme"
5
+ authors = [{ name = "Jacek Labudda" }]
6
+ readme = "README.md"
7
+ license = { text = "MIT" }
8
+ requires-python = ">=3.9"
9
+ keywords = ["wordpress", "docker", "installer", "cli", "wp"]
10
+ dependencies = ["python-dotenv>=1.0.0"]
11
+
12
+ [project.scripts]
13
+ wp-docker = "wp_docker_cli.cli:main"
14
+
15
+ [build-system]
16
+ requires = ["setuptools>=61.0", "wheel"]
17
+ build-backend = "setuptools.build_meta"
18
+
19
+ [tool.setuptools.packages.find]
20
+ where = ["wp_docker_cli"]
21
+ include = ["*"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,17 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="wp-docker-cli",
5
+ version="0.1.0",
6
+ packages=find_packages(),
7
+ include_package_data=True,
8
+ install_requires=[
9
+ "python-dotenv",
10
+ ],
11
+ entry_points={
12
+ "console_scripts": [
13
+ "wp-docker=wp_docker_cli.cli:main",
14
+ ],
15
+ },
16
+ python_requires=">=3.9",
17
+ )
@@ -0,0 +1,41 @@
1
+ Metadata-Version: 2.4
2
+ Name: wp-docker
3
+ Version: 0.1.0
4
+ Summary: WordPress Docker Installer CLI tool with Docker setup and preconfigured theme
5
+ Author: Jacek Labudda
6
+ License: MIT
7
+ Keywords: wordpress,docker,installer,cli,wp
8
+ Requires-Python: >=3.9
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE
11
+ Requires-Dist: python-dotenv>=1.0.0
12
+ Dynamic: license-file
13
+ Dynamic: requires-python
14
+
15
+ # WP Docker CLI
16
+
17
+ **WP Docker CLI** to narzędzie do szybkiego tworzenia projektów WordPress z Dockerem.
18
+ Automatyzuje:
19
+
20
+ - pobranie najnowszego WordPressa
21
+ - kopiowanie własnego theme
22
+ - generowanie `.env`
23
+ - uruchomienie Docker Compose
24
+ - aktywację theme w kontenerze APP
25
+ - inicjalizację repozytorium Git i push do remote
26
+
27
+ ---
28
+
29
+ ## Instalacja
30
+
31
+ ```bash
32
+ pip install wp-docker-cli
33
+ ```
34
+
35
+ ## Użycie
36
+
37
+ Tworzenie nowego projektu:
38
+
39
+ ```bash
40
+ wp-docker init "Nazwa Projektu"
41
+ ```
@@ -0,0 +1,10 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ setup.py
5
+ wp_docker_cli/wp_docker.egg-info/PKG-INFO
6
+ wp_docker_cli/wp_docker.egg-info/SOURCES.txt
7
+ wp_docker_cli/wp_docker.egg-info/dependency_links.txt
8
+ wp_docker_cli/wp_docker.egg-info/entry_points.txt
9
+ wp_docker_cli/wp_docker.egg-info/requires.txt
10
+ wp_docker_cli/wp_docker.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ wp-docker = wp_docker_cli.cli:main
@@ -0,0 +1 @@
1
+ python-dotenv>=1.0.0