diff --git a/BUILD.md b/BUILD.md index 74dd8bd..c61380c 100644 --- a/BUILD.md +++ b/BUILD.md @@ -8,7 +8,7 @@ deactivate ; rm -rf venv env dist ; virtualenv env ; source env/bin/activate ; Cleanish: ``` -source env/bin/activate ; cd docs/ ; make clean ; cd .. ; deactivate ; rm -rf venv env dist +source env/bin/activate ; cd docs/ ; make clean ; cd .. ; deactivate ; rm -rf venv env dist src/*-info src/*/__pycache__ ``` diff --git a/docs/source/index.rst b/docs/source/index.rst index 08a1c46..75aa7d1 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -68,6 +68,6 @@ These scripts were created with the `The Phind-CodeLlama-34B-v2_q8.guff` model f :maxdepth: 1 :caption: Contents: - the_stack + the_smack * :ref:`genindex` diff --git a/docs/source/the_smack.rst b/docs/source/the_smack.rst new file mode 100644 index 0000000..dd65be3 --- /dev/null +++ b/docs/source/the_smack.rst @@ -0,0 +1,10 @@ +The Smack +========= + +This is the documentation for The Smack. + +.. automodule:: the_smack + :members: + +.. automodule:: the_smack.the_stack_licenses + :members: diff --git a/docs/source/the_stack.rst b/docs/source/the_stack.rst deleted file mode 100644 index 7740e2d..0000000 --- a/docs/source/the_stack.rst +++ /dev/null @@ -1,10 +0,0 @@ -The Smack -========= - -This is the documentation for The Smack. - -.. automodule:: the_stack - :members: - -.. automodule:: the_stack.the_stack_licenses - :members: \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 0f3b141..0323f8c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,5 +8,5 @@ name = "the_smack" version = "0.0.9" [project.scripts] -the-stack-licenses = "the_stack.the_stack_licenses:main" -the-stack-headers = "the_stack.the_stack_headers:main" +the-stack-licenses = "the_smack.the_stack_licenses:main" +the-stack-headers = "the_smack.the_stack_headers:main" diff --git a/src/the_smack/__init__.py b/src/the_smack/__init__.py new file mode 100644 index 0000000..954a7ee --- /dev/null +++ b/src/the_smack/__init__.py @@ -0,0 +1,5 @@ +# __init__.py + +import the_smack + +__all__ = ["the_smack"] diff --git a/src/the_stack/the_stack_headers.py b/src/the_smack/the_stack_headers.py similarity index 100% rename from src/the_stack/the_stack_headers.py rename to src/the_smack/the_stack_headers.py diff --git a/src/the_stack/the_stack_licenses.py b/src/the_smack/the_stack_licenses.py similarity index 100% rename from src/the_stack/the_stack_licenses.py rename to src/the_smack/the_stack_licenses.py diff --git a/src/the_stack/__init__.py b/src/the_stack/__init__.py deleted file mode 100644 index 2311e9f..0000000 --- a/src/the_stack/__init__.py +++ /dev/null @@ -1,5 +0,0 @@ -# __init__.py - -import the_stack - -__all__ = ["the_stack"]