From 31fc87967c403c9b3ca3ef429018e2e97431ab77 Mon Sep 17 00:00:00 2001 From: CartoonFan Date: Sat, 3 Oct 2020 17:07:49 -0700 Subject: [PATCH] Fix a typo, remove missing directories, and add lutris/database to the list of installed directories (#4) --- INSTALL.rst | 2 +- MANIFEST.in | 4 +--- setup.py | 1 + 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/INSTALL.rst b/INSTALL.rst index 1317a4b41..66514144e 100644 --- a/INSTALL.rst +++ b/INSTALL.rst @@ -24,7 +24,7 @@ These dependencies are only for running the Lutris client. To install and run games themselves we recommend you install the following packages: * psmisc (or the package providing 'fuser') - * pz7zip (or the package providing '7z') + * p7zip (or the package providing '7z') * curl * fluid-soundfont-gs (or other soundfonts for MIDI support) * cabextract (if needed, to install Windows games) diff --git a/MANIFEST.in b/MANIFEST.in index c90c78d72..2a682069e 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,10 +1,8 @@ recursive-include lutris *.py -recursive-include data/media * -recursive-include data/ui * include bin/lutris include LICENSE include AUTHORS include MANIFEST.in -include README +include README.rst graft debian prune tests diff --git a/setup.py b/setup.py index 8a1c0dab5..344465a16 100755 --- a/setup.py +++ b/setup.py @@ -26,6 +26,7 @@ setup( author_email='strider@strycore.com', packages=[ 'lutris', + 'lutris.database', 'lutris.gui', 'lutris.gui.config', 'lutris.gui.dialogs',