/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Jelmer Vernooij
  • Date: 2008-12-08 22:22:54 UTC
  • mto: (0.215.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 6960.
  • Revision ID: jelmer@samba.org-20081208222254-0dkdulf0bjlm4gt1
Rename package to dulwich, add setup.py.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
 
2
# Setup file for bzr-git
 
3
# Copyright (C) 2008 Jelmer Vernooij <jelmer@samba.org>
 
4
 
 
5
from distutils.core import setup
 
6
 
 
7
setup(name='dulwich',
 
8
      description='Pure-Python Git Library',
 
9
      keywords='git',
 
10
      version='0.0.1',
 
11
      url='http://launchpad.net/dulwich',
 
12
      download_url='http://launchpad.net/dulwich',
 
13
      license='GPL',
 
14
      author='Jelmer Vernooij',
 
15
      author_email='jelmer@samba.org',
 
16
      long_description="""
 
17
      Simple Pure-Python implementation of the Git file formats and 
 
18
      protocols. Dulwich is the place where Mr. and Mrs. Git live 
 
19
      in one of the Monty Python sketches.
 
20
      """,
 
21
      packages=['dulwich', 'dulwich.tests'],
 
22
      )