12
by Ryan Finnie
Make distutils package |
1 |
#!/usr/bin/env python
|
2 |
||
13
by Ryan Finnie
Add licenses |
3 |
# Turku backups - client agent
|
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 |
||
12
by Ryan Finnie
Make distutils package |
18 |
from distutils.core import setup |
19 |
||
20 |
setup( |
|
21 |
name='turku_agent', |
|
22 |
description='Turku backups - client agent', |
|
23 |
author='Ryan Finnie', |
|
24 |
author_email='ryan.finnie@canonical.com', |
|
25 |
url='https://launchpad.net/turku', |
|
26 |
scripts=['turku-agent-ping', 'turku-update-config'], |
|
27 |
)
|