aboutsummaryrefslogtreecommitdiffstats
path: root/net-mgmt/py-aggregate6/files/patch-setup.py
blob: 9d3b01234a871e04579cbb2f81e7f43153c213d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--- setup.py.orig	2017-12-01 09:46:38 UTC
+++ setup.py
@@ -70,13 +70,12 @@ setup(
         'Programming Language :: Python :: 3',
         'Programming Language :: Python :: 3.6'
     ],
-    setup_requires=["nose", "coverage", "mock"],
-    install_requires=["py-radix==0.10.0"] + (
+    install_requires=["py-radix>=0.10.0"] + (
         ["future", "ipaddress"] if sys.version_info.major == 2 else []
     ),
     packages=find_packages(exclude=['tests', 'tests.*']),
     entry_points={'console_scripts':
                   ['aggregate6 = aggregate6.aggregate6:main']},
-    data_files = [('man/man7', ['aggregate6.7'])],
+    data_files = [('share/man/man7', ['aggregate6.7'])],
     test_suite='nose.collector'
 )