~mew/charm-helpers/lp1202804

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Matthew Wedgwood
  • Date: 2013-05-11 20:24:29 UTC
  • Revision ID: matthew.wedgwood@canonical.com-20130511202429-i18umt87kbmbcdye
Fixup for charmsupport, adopt package infrastructure

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
 
10
10
 
11
11
SETUP = {
12
 
    'name': "charmsupport",
 
12
    'name': "charmhelpers",
13
13
    'version': VERSION,
14
 
    'author': "Matthew Wedgwood",
15
 
    'author_email': "matthew.wedgwood@ubuntu.com",
16
 
    'url': "https://code.launchpad.net/charmsupport",
17
 
    'packages': ["charmsupport"],
18
 
    'scripts': ["bin/charmsupport"],
19
 
    'license': "Lesser GNU Public License v3",
 
14
    'author': "Ubuntu Developers",
 
15
    'author_email': "ubuntu-devel-discuss@lists.ubuntu.com",
 
16
    'url': "https://code.launchpad.net/charm-helpers",
 
17
    'packages': ["charmhelpers"],
 
18
    'scripts': ["bin/contrib/charmsupport/charmsupport"],
 
19
    'license': "Affero GNU Public License v3",
20
20
    'long_description': open('README.txt').read(),
21
21
}
22
22