diff options
author | Wolfgang Müller | 2021-05-06 16:15:07 +0200 |
---|---|---|
committer | Wolfgang Müller | 2021-05-06 16:15:07 +0200 |
commit | b867d187d2c341020c3f1640d94780b59b5baa32 (patch) | |
tree | be9d24240422e89d84dbfcf47acee5289ddd331c /setup.py | |
parent | b6c2d4843ee37c0244a28425220e707074b7d0c7 (diff) | |
download | quarg-0.1.1.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
Diffstat (limited to '')
-rw-r--r-- | setup.py | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -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', |