File: setup.py

package info (click to toggle)
bzr-email 0.0.1~bzr58-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 92 kB
  • sloc: python: 444; makefile: 12; sh: 1
file content (22 lines) | stat: -rwxr-xr-x 714 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python2.4

from distutils.core import setup

if __name__ == '__main__':
    setup(name='bzr-email',
      description='Email plugin for Bazaar',
      keywords='plugin bzr email',
      version='0.0.1',
      url='http://launchpad.net/bzr-email',
      download_url='http://launchpad.net/bzr-email',
      license='GPL',
      author='Robert Collins',
      author_email='robertc@robertcollins.net',
      long_description="""
      Hooks into Bazaar and sends commit notification emails.
      """,
      package_dir={'bzrlib.plugins.email':'.',
                   'bzrlib.plugins.email.tests':'tests'},
      packages=['bzrlib.plugins.email',
                'bzrlib.plugins.email.tests']
      )