~psivaa/core-image-watcher/correct-output-queue

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Ubuntu CI Bot
  • Author(s): Celso Providelo
  • Date: 2015-04-01 01:49:03 UTC
  • mfrom: (11.1.2 flake8)
  • Revision ID: ubuntu_ci_bot-20150401014903-9auo1rxy26wfdpc1
Installing flake8 for tests and benefiting of its integration with setuptools for processing all installed files. [r=Thomi Richards]

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/env python3
2
2
 
3
 
# core-image-watcher 
 
3
# core-image-watcher
4
4
# Copyright (C) 2015 Canonical
5
5
#
6
6
# This program is free software: you can redistribute it and/or modify
20
20
import sys
21
21
assert sys.version_info >= (3,), 'Python 3 is required'
22
22
 
23
 
from setuptools import find_packages, setup, Extension
 
23
from setuptools import (
 
24
    find_packages,
 
25
    setup,
 
26
)
24
27
 
25
28
 
26
29
VERSION = '1.0.0'
36
39
    url='https://launchpad.net/core-image-watcher',
37
40
    license='GPLv3',
38
41
    packages=find_packages(),
39
 
    test_suite='core_image_watcher.tests',  
 
42
    test_suite='core_image_watcher.tests',
40
43
    scripts=['core-image-watcher.py']
41
44
)