From 14ba391f0b225a1bf32d52b640a47b580f8b1b28 Mon Sep 17 00:00:00 2001 From: Yuri D'Elia Date: Mon, 23 Oct 2017 15:02:22 +0200 Subject: [PATCH] Drop setuptools-git --- MANIFEST.in | 2 -- README.rst | 4 ++-- setup.py | 5 +++-- 3 files changed, 5 insertions(+), 6 deletions(-) delete mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in deleted file mode 100644 index 2c8b71c..0000000 --- a/MANIFEST.in +++ /dev/null @@ -1,2 +0,0 @@ -global-exclude .git* -global-exclude .travis.* diff --git a/README.rst b/README.rst index 6f96d19..f8ead43 100644 --- a/README.rst +++ b/README.rst @@ -130,12 +130,12 @@ Requirements and installation - Python 3 or Python 2 - PyQt5, PyQt4 or PySide -- setuptools and setuptools-git (install-only). +- setuptools (install-only) Under Debian/Ubuntu, install the required dependencies with:: sudo apt-get install python3 python3-pyqt5 - sudo apt-get install python3-setuptools python3-setuptools-git + sudo apt-get install python3-setuptools Then download and install simply via pip:: diff --git a/setup.py b/setup.py index b0db4e0..3db7dc1 100755 --- a/setup.py +++ b/setup.py @@ -35,6 +35,7 @@ scripts=['bin/gtabview'], packages=find_packages(), - setup_requires=['setuptools', 'setuptools-git'], + setup_requires=['setuptools'], extras_require={'test': ['nose']}, - test_suite='nose.collector') + test_suite='nose.collector', + data_files=[('share/doc/gtabview', ['README.rst', 'NEWS.rst'])])