~allenap/maas/ipmi-power-confusion--bug-1560830

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Gavin Panella
  • Date: 2012-01-19 10:37:57 UTC
  • mfrom: (16.3.22 test-bling)
  • Revision ID: gavin.panella@canonical.com-20120119103757-surtgos6dn4krulo
[r=rvba] Adds testtools and testresources, templates for new source files, import formatting utility from Launchpad, and fixes some lint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 
5
5
"""Distutils installer for maas."""
6
6
 
 
7
import os
 
8
 
7
9
import distribute_setup
8
10
distribute_setup.use_setuptools()
9
 
import os
10
 
 
11
 
from setuptools import setup, find_packages
 
11
 
 
12
from setuptools import (
 
13
    find_packages,
 
14
    setup,
 
15
    )
 
16
 
12
17
 
13
18
def read(fname):
14
19
    return open(os.path.join(os.path.dirname(__file__), fname)).read().strip()
21
26
    url="https://launchpad.net/maas",
22
27
    license="GPL",
23
28
    description="Metal as as Service",
24
 
    long_description = read('README.txt'),
 
29
    long_description=read('README.txt'),
25
30
 
26
31
    author="MaaS Developers",
27
32
    author_email="juju@lists.ubuntu.com",
28
33
 
29
 
    packages = find_packages('src'),
30
 
    package_dir = {'': 'src'},
31
 
 
32
 
    install_requires = ['setuptools'],
33
 
 
34
 
    classifiers = [
 
34
    packages=find_packages('src'),
 
35
    package_dir={'': 'src'},
 
36
 
 
37
    install_requires=['setuptools'],
 
38
 
 
39
    classifiers=[
35
40
        'Development Status :: 4 - Beta',
36
41
        'Framework :: Django',
37
42
        'Intended Audience :: Developers',