~fginther/jenkins-launchpad-plugin/indirect-team-membership

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: mrazik
  • Date: 2013-04-30 07:53:46 UTC
  • mto: This revision was merged to the branch mainline in revision 109.
  • Revision ID: mrazik-20130430075346-btzs91iesdnob6x1
initial packaging

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from distutils.core import setup
 
2
from setuptools import find_packages
 
3
setup(
 
4
    name='jenkins-launchpad-plugin',
 
5
    version='1.0',
 
6
    url='https://launchpad.net/jenkins-launchpad-plugin',
 
7
    packages=find_packages(),
 
8
    test_suite='tests',
 
9
    scripts=[
 
10
        'bin/autoland',
 
11
        'bin/dput',
 
12
        'bin/getMergeProposals',
 
13
        'bin/launchpadTrigger',
 
14
        'bin/voteOnMergeProposal'
 
15
    ]
 
16
)