Remove unnecessary --no-deps flag from pip install command and clean up pyproject.toml by removing build-system section

This commit is contained in:
Marco Dalla Tiezza
2025-06-23 18:17:49 +02:00
parent 1e8c07680c
commit 8b36d8f818
2 changed files with 1 additions and 5 deletions

View File

@@ -26,7 +26,7 @@ modules:
- name: artemis
buildsystem: simple
build-commands:
- pip3 install . --no-deps --prefix=/app
- pip3 install . --prefix=/app
sources:
- type: git
url: https://github.com/AresValley/Artemis.git

View File

@@ -11,7 +11,3 @@ requires-python = ">=3.12"
[project.scripts]
artemis = "app:main"
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"