Migrate to pyproject.toml

This commit is contained in:
Sergio Costas 2024-08-22 00:14:24 +02:00
parent 20c4fdbeb8
commit 31a6da7f01
98 changed files with 155 additions and 402 deletions

View file

@ -6,11 +6,23 @@ Devede NG is a rewrite of the Devede DVD disc authoring program. This new
code has been written from scratch, and uses Python3 and Gtk3. It is also
cleaner, which will allow to add new features in the future.
## INSTALLING DEVEDE NG ##
## INSTALLING DEVEDE NG FROM SOURCES ##
Just type:
First, be sure that you have uninstalling any package with devede. Then, Just type:
sudo ./setup.py install
sudo python3 -m pip uninstall -y devedeng
sudo python3 -m pip install .
sudo update-icon-caches /usr/share/icons/hicolor
If you receive a notification 'error: externally-managed-environment', you can override
it by using
sudo python3 -m pip uninstall --break-system-packages -y devedeng
sudo python3 -m pip install --break-system-packages .
sudo update-icon-caches /usr/share/icons/hicolor
Also, remember that you need the `setuptools` and `setuptools-gettext` modules
installed in your system.
## USING DEVEDE NG ##