about summary refs log tree commit diff
path: root/pkgs/tools/text/rpl/remove-argparse-manpage.diff
blob: 8d32976996828a813695931fcf68ee38e79dcaf2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
diff --git a/setup.cfg b/setup.cfg
index 12e9198..38e5376 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -15,7 +15,6 @@ classifiers =
 [options]
 scripts = rpl
 python_requires = >=3
-setup_requires = argparse-manpage
 install_requires = chardet
 
 [options.extras_require]
diff --git a/setup.py b/setup.py
index 96cade6..879fc44 100644
--- a/setup.py
+++ b/setup.py
@@ -1,9 +1,8 @@
-from build_manpages.build_manpages import get_install_cmd
 from setuptools import setup
 from setuptools.command.install import install
 
 setup(
     cmdclass={
-        'install': get_install_cmd(install),
+        'install': install,
     }
 )