summaryrefslogtreecommitdiffstats
path: root/ipalib
diff options
context:
space:
mode:
authorChristian Heimes <cheimes@redhat.com>2016-11-30 10:19:18 +0100
committerMartin Basti <mbasti@redhat.com>2016-11-30 16:44:38 +0100
commit235f68524767c1eb2e12fb6d1d9f6a520414c583 (patch)
tree8b61dc2960ca5364168e640aab9d093aa8a46593 /ipalib
parentdbb98765d73519289ee22f3de1a5ccde140f6f5d (diff)
downloadfreeipa-235f68524767c1eb2e12fb6d1d9f6a520414c583.tar.gz
freeipa-235f68524767c1eb2e12fb6d1d9f6a520414c583.tar.xz
freeipa-235f68524767c1eb2e12fb6d1d9f6a520414c583.zip
Wheel bundles fixes
* make wheel_bundle no longer bundles ipaplatform * ipaclient and ipalib use a consistent extra tag for the install subpackage. `pip install ipalib[ipalib.install]` looks a bit silly. https://fedorahosted.org/freeipa/ticket/6474 Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Tomas Krizek <tkrizek@redhat.com>
Diffstat (limited to 'ipalib')
-rw-r--r--ipalib/setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/setup.py b/ipalib/setup.py
index 4be3eb1b0..36b06fc5b 100644
--- a/ipalib/setup.py
+++ b/ipalib/setup.py
@@ -48,6 +48,6 @@ if __name__ == '__main__':
"wheel",
],
extras_require={
- "ipalib.install": ["ipaplatform"],
+ "install": ["ipaplatform"],
},
)