From 34c4f72b0137ec749f1e7aef9431d716b3128b75 Mon Sep 17 00:00:00 2001 From: Aleksandr Mezin Date: Sat, 28 May 2016 13:40:15 +0600 Subject: [PATCH] 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 --- src/python-lxc/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'],