wexample-filestate-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,68 @@
1
+ Metadata-Version: 2.1
2
+ Name: wexample-filestate-php
3
+ Version: 0.0.1
4
+ Summary: Helpers for Php.
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-filestate-php
11
+ Requires-Python: >=3.10
12
+ Requires-Dist: autoflake
13
+ Requires-Dist: black
14
+ Requires-Dist: flynt
15
+ Requires-Dist: isort
16
+ Requires-Dist: networkx
17
+ Requires-Dist: packaging
18
+ Requires-Dist: pydantic<3,>=2
19
+ Requires-Dist: python-dotenv
20
+ Requires-Dist: pyupgrade
21
+ Requires-Dist: tomlkit
22
+ Requires-Dist: wexample-filestate-git==0.0.38
23
+ Provides-Extra: dev
24
+ Requires-Dist: pytest; extra == "dev"
25
+ Description-Content-Type: text/markdown
26
+
27
+ # wexample-filestate-php
28
+
29
+ Helpers for Php.
30
+
31
+ Version: 0.0.1
32
+
33
+ ## Requirements
34
+
35
+ - Python >=3.10
36
+
37
+ ## Dependencies
38
+
39
+ - autoflake
40
+ - black
41
+ - flynt
42
+ - isort
43
+ - networkx
44
+ - packaging
45
+ - pydantic>=2,<3
46
+ - python-dotenv
47
+ - pyupgrade
48
+ - tomlkit
49
+ - wexample-filestate-git==0.0.38
50
+
51
+ ## Installation
52
+
53
+ ```bash
54
+ pip install wexample-filestate-php
55
+ ```
56
+
57
+ ## Links
58
+
59
+ - Homepage: https://github.com/wexample/python-filestate-php
60
+
61
+ ## License
62
+
63
+ MIT
64
+ ## Credits
65
+
66
+ This package has been developed by [Wexample](https://wexample.com), a collection of tools and utilities to streamline development workflows.
67
+
68
+ Visit [wexample.com](https://wexample.com) to discover more tools and resources for efficient development.
@@ -0,0 +1,42 @@
1
+ # wexample-filestate-php
2
+
3
+ Helpers for Php.
4
+
5
+ Version: 0.0.1
6
+
7
+ ## Requirements
8
+
9
+ - Python >=3.10
10
+
11
+ ## Dependencies
12
+
13
+ - autoflake
14
+ - black
15
+ - flynt
16
+ - isort
17
+ - networkx
18
+ - packaging
19
+ - pydantic>=2,<3
20
+ - python-dotenv
21
+ - pyupgrade
22
+ - tomlkit
23
+ - wexample-filestate-git==0.0.38
24
+
25
+ ## Installation
26
+
27
+ ```bash
28
+ pip install wexample-filestate-php
29
+ ```
30
+
31
+ ## Links
32
+
33
+ - Homepage: https://github.com/wexample/python-filestate-php
34
+
35
+ ## License
36
+
37
+ MIT
38
+ ## Credits
39
+
40
+ This package has been developed by [Wexample](https://wexample.com), a collection of tools and utilities to streamline development workflows.
41
+
42
+ Visit [wexample.com](https://wexample.com) to discover more tools and resources for efficient development.
@@ -0,0 +1,65 @@
1
+ [build-system]
2
+ requires = [
3
+ "pdm-backend",
4
+ ]
5
+ build-backend = "pdm.backend"
6
+
7
+ [project]
8
+ name = "wexample-filestate-php"
9
+ version = "0.0.1"
10
+ description = "Helpers for Php."
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
+ "autoflake",
22
+ "black",
23
+ "flynt",
24
+ "isort",
25
+ "networkx",
26
+ "packaging",
27
+ "pydantic>=2,<3",
28
+ "python-dotenv",
29
+ "pyupgrade",
30
+ "tomlkit",
31
+ "wexample-filestate-git==0.0.38",
32
+ ]
33
+
34
+ [project.readme]
35
+ file = "README.md"
36
+ content-type = "text/markdown"
37
+
38
+ [project.license]
39
+ text = "MIT"
40
+
41
+ [project.urls]
42
+ homepage = "https://github.com/wexample/python-filestate-php"
43
+
44
+ [project.optional-dependencies]
45
+ dev = [
46
+ "pytest",
47
+ ]
48
+
49
+ [tool.pdm]
50
+ distribution = true
51
+
52
+ [tool.pdm.build]
53
+ includes = [
54
+ "src/wexample_filestate-php/py.typed",
55
+ ]
56
+ package-dir = "src"
57
+ packages = [
58
+ { include = "wexample_filestate-php", from = "src" },
59
+ ]
60
+
61
+ [tool.filestate]
62
+ keep = [
63
+ "black",
64
+ "isort",
65
+ ]