~turku/turku/turku-storage

1 by Ryan Finnie
Initial commit
1
#!/usr/bin/env python
2
2 by Ryan Finnie
Add licenses
3
# Turku backups - storage module
4
# Copyright 2015 Canonical Ltd.
5
#
6
# This program is free software: you can redistribute it and/or modify it
7
# under the terms of the GNU General Public License version 3, as published by
8
# the Free Software Foundation.
9
#
10
# This program is distributed in the hope that it will be useful, but WITHOUT
11
# ANY WARRANTY; without even the implied warranties of MERCHANTABILITY,
12
# SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13
# General Public License for more details.
14
#
15
# You should have received a copy of the GNU General Public License along with
16
# this program.  If not, see <http://www.gnu.org/licenses/>.
17
1 by Ryan Finnie
Initial commit
18
from distutils.core import setup
19
20
setup(
21
    name='turku_storage',
22
    description='Turku backups - storage units',
23
    author='Ryan Finnie',
24
    author_email='ryan.finnie@canonical.com',
25
    url='https://launchpad.net/turku',
26
    packages=['turku_storage'],
27
    scripts=['turku-storage-ping', 'turku-storage-update-config'],
28
)