From: Aleksandr Mezin Date: Sat, 28 May 2016 07:40:15 +0000 (+0600) Subject: python-lxc: change distribution name _lxc -> lxc X-Git-Tag: lxc-2.1.0~416^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1034%2Fhead;p=thirdparty%2Flxc.git python-lxc: change distribution name _lxc -> lxc Distribution name starting with underscore is considered invalid by many tools. For example, you can't list such name in install_requires in your setup.py. Signed-off-by: Aleksandr Mezin --- diff --git a/src/python-lxc/setup.py b/src/python-lxc/setup.py index c9c201436..58a8d7d0a 100644 --- a/src/python-lxc/setup.py +++ b/src/python-lxc/setup.py @@ -63,7 +63,7 @@ class LxcBuildExtCommand(BuildExtCommand): super(LxcBuildExtCommand, self).build_extensions() -setup(name='_lxc', +setup(name='lxc', version='0.1', description='LXC', packages=['lxc'],