solobot 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.
- solobot-0.0.1/PKG-INFO +29 -0
- solobot-0.0.1/README.md +22 -0
- solobot-0.0.1/pyproject.toml +13 -0
- solobot-0.0.1/setup.cfg +4 -0
- solobot-0.0.1/solobot.egg-info/PKG-INFO +29 -0
- solobot-0.0.1/solobot.egg-info/SOURCES.txt +7 -0
- solobot-0.0.1/solobot.egg-info/dependency_links.txt +1 -0
- solobot-0.0.1/solobot.egg-info/top_level.txt +1 -0
- solobot-0.0.1/solobot.py +3 -0
solobot-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: solobot
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Minimal demo package for PyPI publishing.
|
|
5
|
+
Requires-Python: >=3.11
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
|
|
8
|
+
# solobot
|
|
9
|
+
|
|
10
|
+
solobot.py for humans.
|
|
11
|
+
|
|
12
|
+
## Build
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
uv build
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Verify Locally
|
|
19
|
+
|
|
20
|
+
Create a temporary virtual environment, install the generated wheel, and verify
|
|
21
|
+
the exported version:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
python3 -m venv .venv-test
|
|
25
|
+
source .venv-test/bin/activate
|
|
26
|
+
pip install dist/solobot-0.1.0-py3-none-any.whl
|
|
27
|
+
python -c "import solobot; print(solobot.__version__)"
|
|
28
|
+
deactivate
|
|
29
|
+
```
|
solobot-0.0.1/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# solobot
|
|
2
|
+
|
|
3
|
+
solobot.py for humans.
|
|
4
|
+
|
|
5
|
+
## Build
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
uv build
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Verify Locally
|
|
12
|
+
|
|
13
|
+
Create a temporary virtual environment, install the generated wheel, and verify
|
|
14
|
+
the exported version:
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
python3 -m venv .venv-test
|
|
18
|
+
source .venv-test/bin/activate
|
|
19
|
+
pip install dist/solobot-0.1.0-py3-none-any.whl
|
|
20
|
+
python -c "import solobot; print(solobot.__version__)"
|
|
21
|
+
deactivate
|
|
22
|
+
```
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=69", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "solobot"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Minimal demo package for PyPI publishing."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
|
|
12
|
+
[tool.setuptools]
|
|
13
|
+
py-modules = ["solobot"]
|
solobot-0.0.1/setup.cfg
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: solobot
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Minimal demo package for PyPI publishing.
|
|
5
|
+
Requires-Python: >=3.11
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
|
|
8
|
+
# solobot
|
|
9
|
+
|
|
10
|
+
solobot.py for humans.
|
|
11
|
+
|
|
12
|
+
## Build
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
uv build
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Verify Locally
|
|
19
|
+
|
|
20
|
+
Create a temporary virtual environment, install the generated wheel, and verify
|
|
21
|
+
the exported version:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
python3 -m venv .venv-test
|
|
25
|
+
source .venv-test/bin/activate
|
|
26
|
+
pip install dist/solobot-0.1.0-py3-none-any.whl
|
|
27
|
+
python -c "import solobot; print(solobot.__version__)"
|
|
28
|
+
deactivate
|
|
29
|
+
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
solobot
|
solobot-0.0.1/solobot.py
ADDED