wexample-wex-addon-dev-php 0.0.1__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,51 @@
1
+ Metadata-Version: 2.1
2
+ Name: wexample-wex-addon-dev-php
3
+ Version: 0.0.1
4
+ Summary: Python dev addon for wex
5
+ Author-Email: weeger <contact@wexample.com>
6
+ License: MIT
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Operating System :: OS Independent
10
+ Project-URL: homepage, https://github.com/wexample/python-wex-dev-python
11
+ Requires-Python: >=3.10
12
+ Requires-Dist: pydantic<3,>=2
13
+ Requires-Dist: wexample-wex-core==6.0.44
14
+ Provides-Extra: dev
15
+ Requires-Dist: pytest; extra == "dev"
16
+ Requires-Dist: wexample-filestate-php==0.0.1; extra == "dev"
17
+ Description-Content-Type: text/markdown
18
+
19
+ # wexample-wex-addon-dev-php
20
+
21
+ Python dev addon for wex
22
+
23
+ Version: 0.0.1
24
+
25
+ ## Requirements
26
+
27
+ - Python >=3.10
28
+
29
+ ## Dependencies
30
+
31
+ - pydantic>=2,<3
32
+ - wexample-wex-core==6.0.44
33
+
34
+ ## Installation
35
+
36
+ ```bash
37
+ pip install wexample-wex-addon-dev-php
38
+ ```
39
+
40
+ ## Links
41
+
42
+ - Homepage: https://github.com/wexample/python-wex-dev-python
43
+
44
+ ## License
45
+
46
+ MIT
47
+ ## Credits
48
+
49
+ This package has been developed by [Wexample](https://wexample.com), a collection of tools and utilities to streamline development workflows.
50
+
51
+ Visit [wexample.com](https://wexample.com) to discover more tools and resources for efficient development.
@@ -0,0 +1,33 @@
1
+ # wexample-wex-addon-dev-php
2
+
3
+ Python dev addon for wex
4
+
5
+ Version: 0.0.1
6
+
7
+ ## Requirements
8
+
9
+ - Python >=3.10
10
+
11
+ ## Dependencies
12
+
13
+ - pydantic>=2,<3
14
+ - wexample-wex-core==6.0.44
15
+
16
+ ## Installation
17
+
18
+ ```bash
19
+ pip install wexample-wex-addon-dev-php
20
+ ```
21
+
22
+ ## Links
23
+
24
+ - Homepage: https://github.com/wexample/python-wex-dev-python
25
+
26
+ ## License
27
+
28
+ MIT
29
+ ## Credits
30
+
31
+ This package has been developed by [Wexample](https://wexample.com), a collection of tools and utilities to streamline development workflows.
32
+
33
+ Visit [wexample.com](https://wexample.com) to discover more tools and resources for efficient development.
@@ -0,0 +1,51 @@
1
+ [build-system]
2
+ requires = [
3
+ "pdm-backend",
4
+ ]
5
+ build-backend = "pdm.backend"
6
+
7
+ [project]
8
+ name = "wexample-wex-addon-dev-php"
9
+ version = "0.0.1"
10
+ description = "Python dev addon for wex"
11
+ authors = [
12
+ { name = "weeger", email = "contact@wexample.com" },
13
+ ]
14
+ requires-python = ">=3.10"
15
+ classifiers = [
16
+ "Programming Language :: Python :: 3",
17
+ "License :: OSI Approved :: MIT License",
18
+ "Operating System :: OS Independent",
19
+ ]
20
+ dependencies = [
21
+ "pydantic>=2,<3",
22
+ "wexample-wex-core==6.0.44",
23
+ ]
24
+
25
+ [project.readme]
26
+ file = "README.md"
27
+ content-type = "text/markdown"
28
+
29
+ [project.license]
30
+ text = "MIT"
31
+
32
+ [project.urls]
33
+ homepage = "https://github.com/wexample/python-wex-dev-python"
34
+
35
+ [project.optional-dependencies]
36
+ dev = [
37
+ "pytest",
38
+ "wexample-filestate-php==0.0.1",
39
+ ]
40
+
41
+ [tool.pdm]
42
+ distribution = true
43
+
44
+ [tool.pdm.build]
45
+ includes = [
46
+ "src/wexample_wex_addon_dev_php/py.typed",
47
+ ]
48
+ package-dir = "src"
49
+ packages = [
50
+ { include = "wexample_wex_addon_dev_php", from = "src" },
51
+ ]