Storages are not installed

* setup.py: Add storages to packages.
This commit is contained in:
Daniel Dehennin 2013-09-06 16:17:53 +02:00
parent 3dc72c505c
commit b070fa8a83
1 changed files with 4 additions and 1 deletions

View File

@ -3,6 +3,9 @@
from distutils.core import setup from distutils.core import setup
PACKAGES = ['tiramisu', 'tiramisu.storage', 'tiramisu.storage.dictionary',
'tiramisu.storage.sqlite3']
def fetch_version(): def fetch_version():
"""Get version from version.in""" """Get version from version.in"""
return file('VERSION', 'r').readline().strip() return file('VERSION', 'r').readline().strip()
@ -15,7 +18,7 @@ setup(
version=fetch_version(), version=fetch_version(),
description='an options controller tool', description='an options controller tool',
url='http://tiramisu.labs.libre-entreprise.org/', url='http://tiramisu.labs.libre-entreprise.org/',
packages=['tiramisu'], packages=PACKAGES,
classifiers=[ classifiers=[
"Programming Language :: Python", "Programming Language :: Python",
"Programming Language :: Python :: 2", "Programming Language :: Python :: 2",