Merge lp:~cprov/core-image-watcher/setup into lp:core-image-watcher

Proposed by Celso Providelo
Status: Merged
Approved by: Thomi Richards
Approved revision: 4
Merged at revision: 4
Proposed branch: lp:~cprov/core-image-watcher/setup
Merge into: lp:core-image-watcher
Diff against target: 50 lines (+41/-0)
2 files modified
.bzrignore (+1/-0)
setup.py (+40/-0)
To merge this branch: bzr merge lp:~cprov/core-image-watcher/setup
Reviewer Review Type Date Requested Status
Thomi Richards (community) Approve
Review via email: mp+254027@code.launchpad.net

Commit message

Basic setup.py for having a fully functional charm.

Description of the change

Basic setup.py for having a fully functional charm.

To post a comment you must log in.
Revision history for this message
Thomi Richards (thomir-deactivatedaccount) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== added file '.bzrignore'
--- .bzrignore 1970-01-01 00:00:00 +0000
+++ .bzrignore 2015-03-25 03:59:43 +0000
@@ -0,0 +1,1 @@
1core_image_watcher.egg-info
02
=== added file 'setup.py'
--- setup.py 1970-01-01 00:00:00 +0000
+++ setup.py 2015-03-25 03:59:43 +0000
@@ -0,0 +1,40 @@
1#!/usr/bin/env python3
2
3# core-image-watcher
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
20import sys
21assert sys.version_info >= (3,), 'Python 3 is required'
22
23from setuptools import find_packages, setup, Extension
24
25
26VERSION = '1.0.0'
27
28
29setup(
30 name='core-image-watcher',
31 version=VERSION,
32 description=('A microservice for watching new ubuntu core images '
33 'and dispatch tests'),
34 author='Canonical CI Engineering Team',
35 author_email='canonical-ci-engineering@lists.launchpad.net',
36 url='https://launchpad.net/core-image-watcher',
37 license='GPLv3',
38 packages=find_packages(),
39 scripts=['core-image-watcher.py']
40)

Subscribers

People subscribed via source and target branches