Skip to content

Commit 0dbaa76

Browse files
committed
Clean up code structure located under python_gardenlinux_lib
Signed-off-by: Tobias Wolf <[email protected]>
1 parent f40e9cf commit 0dbaa76

File tree

21 files changed

+16
-1494
lines changed

21 files changed

+16
-1494
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Features:
2020

2121
**Inclusion via poetry**:
2222

23-
`gardenlinux = { git = "https://github.com/gardenlinux/python_gardenlinux_lib", rev="0.6.0" }`
23+
`gardenlinux = { git = "https://github.com/gardenlinux/python_gardenlinux_lib", rev="0.7.0" }`
2424

2525
```python
2626
from gardenlinux.features import Parser

docs/conf.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
import sys
33

44
sys.path.insert(0, os.path.abspath("../src"))
5-
import python_gardenlinux_lib
65

76

87
# Configuration file for the Sphinx documentation builder.

docs/index.rst

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,19 @@
44
contain the root `toctree` directive.
55
66
python-gardenlinux-lib documentation
7-
================================
8-
.. automodule:: python_gardenlinux_lib.parse_features
7+
====================================
8+
.. automodule:: gardenlinux.apt
99
:members:
10-
.. automodule:: python_gardenlinux_lib.package_repo_info
10+
.. automodule:: gardenlinux.features
11+
:members:
12+
.. automodule:: gardenlinux.flavors
13+
:members:
14+
.. automodule:: gardenlinux.git
15+
:members:
16+
.. automodule:: gardenlinux.oci
1117
:members:
1218
.. toctree::
13-
:maxdepth: 2
19+
:maxdepth: 3
1420
:caption: Contents:
1521

1622
Indices and tables

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Contains tools to work with the features directory of gardenlinux
55
authors = ["Garden Linux Maintainers <[email protected]>"]
66
license = "Apache-2.0"
77
readme = "README.md"
8-
packages = [{include = "gardenlinux", from="src"}, {include = "python_gardenlinux_lib", from="src"}]
8+
packages = [{include = "gardenlinux", from="src"}]
99

1010
[tool.poetry.dependencies]
1111
python = "^3.10"

src/python_gardenlinux_lib/__init__.py

Lines changed: 0 additions & 3 deletions
This file was deleted.

src/python_gardenlinux_lib/features/__init__.py

Whitespace-only changes.

src/python_gardenlinux_lib/features/package_repo_info.py

Lines changed: 0 additions & 81 deletions
This file was deleted.

src/python_gardenlinux_lib/features/parse_features.py

Lines changed: 0 additions & 154 deletions
This file was deleted.

src/python_gardenlinux_lib/flavors/__init__.py

Whitespace-only changes.

src/python_gardenlinux_lib/oras/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)