diff --git a/builddeb b/builddeb index 7c2863d6..0a60b7e8 100755 --- a/builddeb +++ b/builddeb @@ -4,7 +4,7 @@ mkdir -p /tmp/pyghmi cp -a * .git /tmp/pyghmi cd /tmp/pyghmi export PYEXEC=python3 -export DSCARGS="--with-python2=True --with-python3=True" +export DSCARGS="--with-python2=False --with-python3=True" if grep wheezy /etc/os-release; then # also it's old, use python2 instead of python3 export PYEXEC=python diff --git a/makesetup b/makesetup index 7288b9e1..b229b116 100755 --- a/makesetup +++ b/makesetup @@ -3,7 +3,7 @@ cd `dirname $0` VERSION=`git describe|cut -d- -f 1` NUMCOMMITS=`git describe|cut -d- -f 2` if [ "$NUMCOMMITS" != "$VERSION" ]; then - VERSION=$VERSION.dev$NUMCOMMITS.g`git describe|cut -d- -f 3` + VERSION=$VERSION.dev$NUMCOMMITS+g`git describe|cut -d- -f 3` fi echo $VERSION > VERSION sed -e "s/#VERSION#/$VERSION/" setup.py.tmpl > setup.py diff --git a/setup.cfg b/setup.cfg index 21f4fe63..f4b0feaa 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,11 +1,11 @@ [metadata] name = pyghmi summary = Python General Hardware Management Initiative (IPMI and others) -description-file = +description_file = README author = Jarrod Johnson -author-email = jjohnson2@lenovo.com -home-page = http://github.com/openstack/pyghmi/ +author_email = jjohnson2@lenovo.com +home_page = http://github.com/openstack/pyghmi/ classifier = Intended Audience :: Information Technology Intended Audience :: System Administrators diff --git a/setup.py.tmpl b/setup.py.tmpl index 4ec295c7..2a5d9837 100644 --- a/setup.py.tmpl +++ b/setup.py.tmpl @@ -21,6 +21,7 @@ setuptools.setup( name='pyghmi', version='#VERSION#', description='Python General Hardware Management Initiative (IPMI, redfish, etc)', + long_description='Python General Hardware Management Initiative (IPMI, redfish, etc)', author='Jarrod Johnson', author_email='jjohnson2@lenovo.com', packages=['pyghmi', 'pyghmi.util', 'pyghmi.ipmi', 'pyghmi.cmd',