~psivaa/snappy-proposed-selftest-agent/request-id-in-payload

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Paul Larson
  • Date: 2015-05-20 22:04:35 UTC
  • mfrom: (1.1.3 core-selftest-agent-2)
  • Revision ID: paul.larson@canonical.com-20150520220435-hfc3y1n7ef2rt1sr
Add some stubs

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python3
 
2
 
 
3
# core-selftest-agent
 
4
# Copyright (C) 2015 Canonical
 
5
#
 
6
# This program is free software: you can redistribute it and/or modify
 
7
# it under the terms of the GNU General Public License as published by
 
8
# the Free Software Foundation, either version 3 of the License, or
 
9
# (at your option) any later version.
 
10
#
 
11
# This program is distributed in the hope that it will be useful,
 
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
# GNU General Public License for more details.
 
15
#
 
16
# You should have received a copy of the GNU General Public License
 
17
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
#
 
19
 
 
20
import sys
 
21
assert sys.version_info >= (3,), 'Python 3 is required'
 
22
 
 
23
from setuptools import find_packages, setup
 
24
 
 
25
 
 
26
VERSION = '1.0.0'
 
27
 
 
28
 
 
29
setup(
 
30
    name='core-selftest-agent',
 
31
    version=VERSION,
 
32
    description=('A microservice for triggering snappy selftest on changes to '
 
33
                 'core packages.'),
 
34
    author='Canonical CI Engineering Team',
 
35
    author_email='canonical-ci-engineering@lists.launchpad.net',
 
36
    url='https://launchpad.net/core-selftest-agent',
 
37
    license='GPLv3',
 
38
    packages=find_packages(),
 
39
    scripts=['core-selftest-agent.py']
 
40
)