wexample-pseudocode 0.0.4__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.
- wexample_pseudocode-0.0.4/PKG-INFO +45 -0
- wexample_pseudocode-0.0.4/README.md +32 -0
- wexample_pseudocode-0.0.4/pyproject.toml +36 -0
- wexample_pseudocode-0.0.4/setup.cfg +4 -0
- wexample_pseudocode-0.0.4/wexample_pseudocode/__init__.py +0 -0
- wexample_pseudocode-0.0.4/wexample_pseudocode.egg-info/PKG-INFO +45 -0
- wexample_pseudocode-0.0.4/wexample_pseudocode.egg-info/SOURCES.txt +7 -0
- wexample_pseudocode-0.0.4/wexample_pseudocode.egg-info/dependency_links.txt +1 -0
- wexample_pseudocode-0.0.4/wexample_pseudocode.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: wexample-pseudocode
|
|
3
|
+
Version: 0.0.4
|
|
4
|
+
Summary: Code creation and maintenance tools
|
|
5
|
+
Author-email: weeger <contact@wexample.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: homepage, https://github.com/wexample/python-pseudocode
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.6
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# Pseudocode
|
|
15
|
+
|
|
16
|
+
Code creation and maintenance tools
|
|
17
|
+
|
|
18
|
+
Version: 0.0.4
|
|
19
|
+
|
|
20
|
+
## Requirements
|
|
21
|
+
|
|
22
|
+
- Python >=3.6
|
|
23
|
+
|
|
24
|
+
## Dependencies
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
## Installation
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
pip install wexample-pseudocode
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Links
|
|
35
|
+
|
|
36
|
+
- Homepage: https://github.com/wexample/python-pseudocode
|
|
37
|
+
|
|
38
|
+
## License
|
|
39
|
+
|
|
40
|
+
MIT
|
|
41
|
+
## Credits
|
|
42
|
+
|
|
43
|
+
This package has been developed by [Wexample](https://wexample.com), a collection of tools and utilities to streamline development workflows.
|
|
44
|
+
|
|
45
|
+
Visit [wexample.com](https://wexample.com) to discover more tools and resources for efficient development.
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# Pseudocode
|
|
2
|
+
|
|
3
|
+
Code creation and maintenance tools
|
|
4
|
+
|
|
5
|
+
Version: 0.0.4
|
|
6
|
+
|
|
7
|
+
## Requirements
|
|
8
|
+
|
|
9
|
+
- Python >=3.6
|
|
10
|
+
|
|
11
|
+
## Dependencies
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## Installation
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
pip install wexample-pseudocode
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Links
|
|
22
|
+
|
|
23
|
+
- Homepage: https://github.com/wexample/python-pseudocode
|
|
24
|
+
|
|
25
|
+
## License
|
|
26
|
+
|
|
27
|
+
MIT
|
|
28
|
+
## Credits
|
|
29
|
+
|
|
30
|
+
This package has been developed by [Wexample](https://wexample.com), a collection of tools and utilities to streamline development workflows.
|
|
31
|
+
|
|
32
|
+
Visit [wexample.com](https://wexample.com) to discover more tools and resources for efficient development.
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = [
|
|
3
|
+
"setuptools>=61.0",
|
|
4
|
+
"wheel",
|
|
5
|
+
]
|
|
6
|
+
build-backend = "setuptools.build_meta"
|
|
7
|
+
|
|
8
|
+
[project]
|
|
9
|
+
name = "wexample-pseudocode"
|
|
10
|
+
version = "0.0.4"
|
|
11
|
+
description = "Code creation and maintenance tools"
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "weeger", email = "contact@wexample.com" },
|
|
14
|
+
]
|
|
15
|
+
requires-python = ">=3.6"
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"License :: OSI Approved :: MIT License",
|
|
19
|
+
"Operating System :: OS Independent",
|
|
20
|
+
]
|
|
21
|
+
dependencies = []
|
|
22
|
+
|
|
23
|
+
[project.readme]
|
|
24
|
+
file = "README.md"
|
|
25
|
+
content-type = "text/markdown"
|
|
26
|
+
|
|
27
|
+
[project.license]
|
|
28
|
+
text = "MIT"
|
|
29
|
+
|
|
30
|
+
[project.urls]
|
|
31
|
+
homepage = "https://github.com/wexample/python-pseudocode"
|
|
32
|
+
|
|
33
|
+
[tool.setuptools]
|
|
34
|
+
packages = [
|
|
35
|
+
"wexample_pseudocode",
|
|
36
|
+
]
|
|
File without changes
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: wexample-pseudocode
|
|
3
|
+
Version: 0.0.4
|
|
4
|
+
Summary: Code creation and maintenance tools
|
|
5
|
+
Author-email: weeger <contact@wexample.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: homepage, https://github.com/wexample/python-pseudocode
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.6
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# Pseudocode
|
|
15
|
+
|
|
16
|
+
Code creation and maintenance tools
|
|
17
|
+
|
|
18
|
+
Version: 0.0.4
|
|
19
|
+
|
|
20
|
+
## Requirements
|
|
21
|
+
|
|
22
|
+
- Python >=3.6
|
|
23
|
+
|
|
24
|
+
## Dependencies
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
## Installation
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
pip install wexample-pseudocode
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Links
|
|
35
|
+
|
|
36
|
+
- Homepage: https://github.com/wexample/python-pseudocode
|
|
37
|
+
|
|
38
|
+
## License
|
|
39
|
+
|
|
40
|
+
MIT
|
|
41
|
+
## Credits
|
|
42
|
+
|
|
43
|
+
This package has been developed by [Wexample](https://wexample.com), a collection of tools and utilities to streamline development workflows.
|
|
44
|
+
|
|
45
|
+
Visit [wexample.com](https://wexample.com) to discover more tools and resources for efficient development.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
wexample_pseudocode
|