~gagern/bzr-cvsps-import/lp437295

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: John Arbash Meinel
  • Date: 2008-06-27 13:33:01 UTC
  • mfrom: (59.1.2 trunk)
  • Revision ID: john@arbash-meinel.com-20080627133301-odk7i5ndkyl1tm58
Bring in Jelmer's setup.py script.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python2.4
 
2
 
 
3
from distutils.core import setup
 
4
 
 
5
setup(name='bzr-cvsps-import',
 
6
      description='CVS import plugin Bazaar',
 
7
      keywords='plugin bzr cvs cvsps',
 
8
      version='0.0.1',
 
9
      url='http://launchpad.net/bzr-cvsps-import',
 
10
      download_url='http://launchpad.net/bzr-cvsps-import',
 
11
      license='GPL',
 
12
      author='John Arbash Meinel',
 
13
      author_email='john@arbash-meinel.com',
 
14
      long_description="""
 
15
      CVS importer for Bazaar, based on cvsps.
 
16
      """,
 
17
      package_dir={'bzrlib.plugins.cvsps_import':'.', 
 
18
                   'bzrlib.plugins.cvsps_import.cvsps':'cvsps'},
 
19
      packages=['bzrlib.plugins.cvsps_import', 
 
20
                'bzrlib.plugins.cvsps_import.cvsps']
 
21
      )