aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorWolfgang Müller2021-05-06 16:15:07 +0200
committerWolfgang Müller2021-05-06 16:15:07 +0200
commitb867d187d2c341020c3f1640d94780b59b5baa32 (patch)
treebe9d24240422e89d84dbfcf47acee5289ddd331c
parentb6c2d4843ee37c0244a28425220e707074b7d0c7 (diff)
downloadquarg-b867d187d2c341020c3f1640d94780b59b5baa32.tar.gz
setup.py: Don't include quarg.1 in data_files0.1.1
Apparently this keyword is deprecated [1]. We're beginning to get very tired of Python packaging standards and tooling, so for now just rely on the distribution putting the manual in the right place. [1] https://discuss.python.org/t/should-there-be-a-new-standard-for-installing-arbitrary-data-files/7853
-rw-r--r--setup.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/setup.py b/setup.py
index ddb2614..6657273 100644
--- a/setup.py
+++ b/setup.py
@@ -15,10 +15,6 @@ setuptools.setup(
packages=setuptools.find_packages(),
python_requires=">=3.8",
- data_files = [
- ('man/man1', ['quarg.1'])
- ],
-
entry_points = {
'console_scripts': [
'quarg = quarg.main:main',