/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: 2009-01-14 18:24:38 UTC
  • mto: (0.222.3 dulwich)
  • mto: This revision was merged to the branch mainline in revision 6960.
  • Revision ID: jelmer@samba.org-20090114182438-c0tn5eczyupi4ztn
Fix download url, add version number.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 
5
5
from distutils.core import setup
6
6
 
 
7
dulwich_version_string = '0.1.0'
 
8
 
7
9
setup(name='dulwich',
8
10
      description='Pure-Python Git Library',
9
11
      keywords='git',
10
 
      version='0.0.1',
 
12
      version=dulwich_version_string,
11
13
      url='http://launchpad.net/dulwich',
12
 
      download_url='http://launchpad.net/dulwich',
 
14
      download_url='http://samba.org/~jelmer/dulwich/dulwich-%s.tar.gz' % dulwich_version_string,
13
15
      license='GPL',
14
16
      author='Jelmer Vernooij',
15
17
      author_email='jelmer@samba.org',