Fix tests directory for Debian packaging

Change-Id: I606761fb7d4c0f0229caaa744e9e6f34f0f1a7a4
This commit is contained in:
Andrew Hutchings 2013-01-24 10:27:40 -08:00
parent cda6f89b50
commit 8316e49965
2 changed files with 3 additions and 3 deletions

View File

@ -50,13 +50,13 @@ copyright = u'2012, Andrew Hutchings, David Shrewsbury'
# built documents.
#
# The short X.Y version.
version = "%d-%02d-%02d-alpha1" % (
version = "%d-%02d-%02d-beta" % (
datetime.datetime.now().year,
datetime.datetime.now().month,
datetime.datetime.now().day
)
# The full version, including alpha/beta/rc tags.
release = "%d-%02d-%02d-alpha1" % (
release = "%d-%02d-%02d-beta" % (
datetime.datetime.now().year,
datetime.datetime.now().month,
datetime.datetime.now().day

View File

@ -45,7 +45,7 @@ setuptools.setup(
version=__version__,
author="David Shrewsbury <shrewsbury.dave@gmail.com>, \
Andrew Hutchings <andrew@linuxjedi.co.uk>",
packages=setuptools.find_packages(exclude=["*.tests"]),
packages=setuptools.find_packages(exclude=["tests", "*.tests"]),
entry_points={
'console_scripts': [
'libra_worker = libra.worker.main:main',