wan27-org 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.
- wan27_org-0.1.0/PKG-INFO +51 -0
- wan27_org-0.1.0/README.md +38 -0
- wan27_org-0.1.0/pyproject.toml +21 -0
- wan27_org-0.1.0/setup.cfg +4 -0
- wan27_org-0.1.0/src/wan27_org/__init__.py +5 -0
- wan27_org-0.1.0/src/wan27_org.egg-info/PKG-INFO +51 -0
- wan27_org-0.1.0/src/wan27_org.egg-info/SOURCES.txt +7 -0
- wan27_org-0.1.0/src/wan27_org.egg-info/dependency_links.txt +1 -0
- wan27_org-0.1.0/src/wan27_org.egg-info/top_level.txt +1 -0
wan27_org-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: wan27-org
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Integration package for https://wan27.org
|
|
5
|
+
Author-email: "wan27.org" <support@wan27.org>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://wan27.org
|
|
8
|
+
Project-URL: Documentation, https://wan27.org/docs
|
|
9
|
+
Project-URL: Repository, https://github.com/youram470-art/wan27-org-python
|
|
10
|
+
Project-URL: Issues, https://github.com/youram470-art/wan27-org-python/issues
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# wan27-org
|
|
15
|
+
|
|
16
|
+
Python package for [wan27.org](https://wan27.org).
|
|
17
|
+
|
|
18
|
+
This package provides a compact Python module for projects that need to
|
|
19
|
+
reference the wan27.org platform. It is intentionally lightweight and can be
|
|
20
|
+
expanded into a fuller Python SDK over time.
|
|
21
|
+
|
|
22
|
+
## Installation
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
pip install wan27-org
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Usage
|
|
29
|
+
|
|
30
|
+
```python
|
|
31
|
+
from wan27_org import HOMEPAGE, hello
|
|
32
|
+
|
|
33
|
+
print(hello())
|
|
34
|
+
print(HOMEPAGE)
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Included Utilities
|
|
38
|
+
|
|
39
|
+
- `HOMEPAGE` pointing to `https://wan27.org`.
|
|
40
|
+
- `hello()` for confirming the package is installed.
|
|
41
|
+
- PyPI metadata for homepage, documentation, repository, and issues.
|
|
42
|
+
|
|
43
|
+
## Links
|
|
44
|
+
|
|
45
|
+
- Website: https://wan27.org
|
|
46
|
+
- Documentation: https://wan27.org/docs
|
|
47
|
+
- Source: https://github.com/youram470-art/wan27-org-python
|
|
48
|
+
|
|
49
|
+
## License
|
|
50
|
+
|
|
51
|
+
MIT
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# wan27-org
|
|
2
|
+
|
|
3
|
+
Python package for [wan27.org](https://wan27.org).
|
|
4
|
+
|
|
5
|
+
This package provides a compact Python module for projects that need to
|
|
6
|
+
reference the wan27.org platform. It is intentionally lightweight and can be
|
|
7
|
+
expanded into a fuller Python SDK over time.
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
pip install wan27-org
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Usage
|
|
16
|
+
|
|
17
|
+
```python
|
|
18
|
+
from wan27_org import HOMEPAGE, hello
|
|
19
|
+
|
|
20
|
+
print(hello())
|
|
21
|
+
print(HOMEPAGE)
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Included Utilities
|
|
25
|
+
|
|
26
|
+
- `HOMEPAGE` pointing to `https://wan27.org`.
|
|
27
|
+
- `hello()` for confirming the package is installed.
|
|
28
|
+
- PyPI metadata for homepage, documentation, repository, and issues.
|
|
29
|
+
|
|
30
|
+
## Links
|
|
31
|
+
|
|
32
|
+
- Website: https://wan27.org
|
|
33
|
+
- Documentation: https://wan27.org/docs
|
|
34
|
+
- Source: https://github.com/youram470-art/wan27-org-python
|
|
35
|
+
|
|
36
|
+
## License
|
|
37
|
+
|
|
38
|
+
MIT
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "wan27-org"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Integration package for https://wan27.org"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = "MIT"
|
|
12
|
+
authors = [{ name = "wan27.org", email = "support@wan27.org" }]
|
|
13
|
+
|
|
14
|
+
[project.urls]
|
|
15
|
+
Homepage = "https://wan27.org"
|
|
16
|
+
Documentation = "https://wan27.org/docs"
|
|
17
|
+
Repository = "https://github.com/youram470-art/wan27-org-python"
|
|
18
|
+
Issues = "https://github.com/youram470-art/wan27-org-python/issues"
|
|
19
|
+
|
|
20
|
+
[tool.setuptools.packages.find]
|
|
21
|
+
where = ["src"]
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: wan27-org
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Integration package for https://wan27.org
|
|
5
|
+
Author-email: "wan27.org" <support@wan27.org>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://wan27.org
|
|
8
|
+
Project-URL: Documentation, https://wan27.org/docs
|
|
9
|
+
Project-URL: Repository, https://github.com/youram470-art/wan27-org-python
|
|
10
|
+
Project-URL: Issues, https://github.com/youram470-art/wan27-org-python/issues
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# wan27-org
|
|
15
|
+
|
|
16
|
+
Python package for [wan27.org](https://wan27.org).
|
|
17
|
+
|
|
18
|
+
This package provides a compact Python module for projects that need to
|
|
19
|
+
reference the wan27.org platform. It is intentionally lightweight and can be
|
|
20
|
+
expanded into a fuller Python SDK over time.
|
|
21
|
+
|
|
22
|
+
## Installation
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
pip install wan27-org
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Usage
|
|
29
|
+
|
|
30
|
+
```python
|
|
31
|
+
from wan27_org import HOMEPAGE, hello
|
|
32
|
+
|
|
33
|
+
print(hello())
|
|
34
|
+
print(HOMEPAGE)
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Included Utilities
|
|
38
|
+
|
|
39
|
+
- `HOMEPAGE` pointing to `https://wan27.org`.
|
|
40
|
+
- `hello()` for confirming the package is installed.
|
|
41
|
+
- PyPI metadata for homepage, documentation, repository, and issues.
|
|
42
|
+
|
|
43
|
+
## Links
|
|
44
|
+
|
|
45
|
+
- Website: https://wan27.org
|
|
46
|
+
- Documentation: https://wan27.org/docs
|
|
47
|
+
- Source: https://github.com/youram470-art/wan27-org-python
|
|
48
|
+
|
|
49
|
+
## License
|
|
50
|
+
|
|
51
|
+
MIT
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
wan27_org
|