diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b5eeb30..fcd9305 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -24,7 +24,7 @@ jobs: pip install wheel twine - name: Construir el paquete - run: python setup.py sdist bdist_wheel + run: python rutpy/setup.py sdist bdist_wheel - name: Publicar en PyPI env: diff --git a/rut.py/__init__.py b/rutpy/__init__.py similarity index 100% rename from rut.py/__init__.py rename to rutpy/__init__.py diff --git a/rut.py/core/__init__.py b/rutpy/core/__init__.py similarity index 100% rename from rut.py/core/__init__.py rename to rutpy/core/__init__.py diff --git a/rut.py/core/rut.py b/rutpy/core/rut.py similarity index 100% rename from rut.py/core/rut.py rename to rutpy/core/rut.py diff --git a/rut.py/setup.py b/rutpy/setup.py similarity index 100% rename from rut.py/setup.py rename to rutpy/setup.py diff --git a/rut.py/tests/__init__.py b/rutpy/tests/__init__.py similarity index 100% rename from rut.py/tests/__init__.py rename to rutpy/tests/__init__.py diff --git a/rut.py/tests/test_rut.py b/rutpy/tests/test_rut.py similarity index 100% rename from rut.py/tests/test_rut.py rename to rutpy/tests/test_rut.py