Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at domenkozar-patch-1 27 lines 626 B view raw
1diff --git a/setup.cfg b/setup.cfg 2index 12e9198..38e5376 100644 3--- a/setup.cfg 4+++ b/setup.cfg 5@@ -15,7 +15,6 @@ classifiers = 6 [options] 7 scripts = rpl 8 python_requires = >=3 9-setup_requires = argparse-manpage 10 install_requires = chardet 11 12 [options.extras_require] 13diff --git a/setup.py b/setup.py 14index 96cade6..879fc44 100644 15--- a/setup.py 16+++ b/setup.py 17@@ -1,9 +1,8 @@ 18-from build_manpages.build_manpages import get_install_cmd 19 from setuptools import setup 20 from setuptools.command.install import install 21 22 setup( 23 cmdclass={ 24- 'install': get_install_cmd(install), 25+ 'install': install, 26 } 27 )