diff --git a/Makefile b/Makefile index e35d817..0650450 100644 --- a/Makefile +++ b/Makefile @@ -32,11 +32,11 @@ test: build: # https://stackoverflow.com/questions/24347450/how-do-you-add-additional-files-to-a-wheel rm -rf build/* dist/* *.egg-info + uv sync uv build --wheel --out-dir dist - docker build -t kianby/stacosys . - #docker login -u kianby - #docker push docker.io/kianby/stacosys:latest + docker build -t source.madyanne.fr/yax/stacosys . + docker push source.madyanne.fr/yax/stacosys # run run: - PYTHONPATH=src/ uv run python src/stacosys/run.py $(RUN_ARGS) \ No newline at end of file + PYTHONPATH=src/ uv run python src/stacosys/run.py $(RUN_ARGS) diff --git a/pyproject.toml b/pyproject.toml index dd0af66..e59cc7c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ dev = [ [tool.setuptools] package-dir = { "" = "src" } # Specify the root directory for packages -packages = ["stacosys"] +packages = ["stacosys", "stacosys.db", "stacosys.i18n", "stacosys.interface", "stacosys.interface.web", "stacosys.interface.templates", "stacosys.model", "stacosys.service"] [tool.setuptools.package-data] # Include `.properties` and `.html` files in the specified directories @@ -38,4 +38,4 @@ packages = ["stacosys"] [build-system] requires = ["setuptools>=61.0"] -build-backend = "setuptools.build_meta" +build-backend = "setuptools.build_meta" \ No newline at end of file