shopline 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.
- shopline-0.1.0/PKG-INFO +43 -0
- shopline-0.1.0/README.md +36 -0
- shopline-0.1.0/pyproject.toml +13 -0
- shopline-0.1.0/setup.cfg +4 -0
- shopline-0.1.0/shopline.egg-info/PKG-INFO +43 -0
- shopline-0.1.0/shopline.egg-info/SOURCES.txt +7 -0
- shopline-0.1.0/shopline.egg-info/dependency_links.txt +1 -0
- shopline-0.1.0/shopline.egg-info/top_level.txt +1 -0
- shopline-0.1.0/shopline.py +3 -0
shopline-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: shopline
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Minimal demo package for PyPI publishing.
|
|
5
|
+
Requires-Python: >=3.11
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
|
|
8
|
+
# shopline
|
|
9
|
+
|
|
10
|
+
Minimal single-file demo package for PyPI publishing.
|
|
11
|
+
|
|
12
|
+
## Build
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
cd demo
|
|
16
|
+
uv build
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Verify Locally
|
|
20
|
+
|
|
21
|
+
Create a temporary virtual environment, install the generated wheel, and verify
|
|
22
|
+
the exported version:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
cd demo
|
|
26
|
+
python3 -m venv .venv-test
|
|
27
|
+
source .venv-test/bin/activate
|
|
28
|
+
pip install dist/shopline-0.1.0-py3-none-any.whl
|
|
29
|
+
python -c "import shopline; print(shopline.__version__)"
|
|
30
|
+
deactivate
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Publish To PyPI
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
cd demo
|
|
37
|
+
uv publish \
|
|
38
|
+
--publish-url https://upload.pypi.org/legacy/ \
|
|
39
|
+
--check-url https://pypi.org/simple/
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
If the package name is already taken on PyPI, update `project.name` in
|
|
43
|
+
`pyproject.toml` before publishing.
|
shopline-0.1.0/README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# shopline
|
|
2
|
+
|
|
3
|
+
Minimal single-file demo package for PyPI publishing.
|
|
4
|
+
|
|
5
|
+
## Build
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
cd demo
|
|
9
|
+
uv build
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
## Verify Locally
|
|
13
|
+
|
|
14
|
+
Create a temporary virtual environment, install the generated wheel, and verify
|
|
15
|
+
the exported version:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
cd demo
|
|
19
|
+
python3 -m venv .venv-test
|
|
20
|
+
source .venv-test/bin/activate
|
|
21
|
+
pip install dist/shopline-0.1.0-py3-none-any.whl
|
|
22
|
+
python -c "import shopline; print(shopline.__version__)"
|
|
23
|
+
deactivate
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Publish To PyPI
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
cd demo
|
|
30
|
+
uv publish \
|
|
31
|
+
--publish-url https://upload.pypi.org/legacy/ \
|
|
32
|
+
--check-url https://pypi.org/simple/
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
If the package name is already taken on PyPI, update `project.name` in
|
|
36
|
+
`pyproject.toml` before publishing.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=69", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "shopline"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Minimal demo package for PyPI publishing."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
|
|
12
|
+
[tool.setuptools]
|
|
13
|
+
py-modules = ["shopline"]
|
shopline-0.1.0/setup.cfg
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: shopline
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Minimal demo package for PyPI publishing.
|
|
5
|
+
Requires-Python: >=3.11
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
|
|
8
|
+
# shopline
|
|
9
|
+
|
|
10
|
+
Minimal single-file demo package for PyPI publishing.
|
|
11
|
+
|
|
12
|
+
## Build
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
cd demo
|
|
16
|
+
uv build
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Verify Locally
|
|
20
|
+
|
|
21
|
+
Create a temporary virtual environment, install the generated wheel, and verify
|
|
22
|
+
the exported version:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
cd demo
|
|
26
|
+
python3 -m venv .venv-test
|
|
27
|
+
source .venv-test/bin/activate
|
|
28
|
+
pip install dist/shopline-0.1.0-py3-none-any.whl
|
|
29
|
+
python -c "import shopline; print(shopline.__version__)"
|
|
30
|
+
deactivate
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Publish To PyPI
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
cd demo
|
|
37
|
+
uv publish \
|
|
38
|
+
--publish-url https://upload.pypi.org/legacy/ \
|
|
39
|
+
--check-url https://pypi.org/simple/
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
If the package name is already taken on PyPI, update `project.name` in
|
|
43
|
+
`pyproject.toml` before publishing.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
shopline
|