Kiln » Dependencies » Dulwich Read More
Clone URL:  
Pushed to one repository · View In Graph Contained in master, master-1, and master-0

Fix download url, add version number.

Changeset ececb785a296

Parent b8c6f1269780

by Jelmer Vernooij

Changes to 2 files · Browse files at ececb785a296 Showing diff from parent b8c6f1269780 Diff from another changeset...

 
21
22
23
 
 
 
21
22
23
24
25
@@ -21,3 +21,5 @@
 import protocol  import repo  import server + +__version__ = (0, 1, 0)
Change 1 of 1 Show Entire File setup.py Stacked
 
4
5
6
 
 
7
8
9
10
 
11
12
 
13
14
15
 
4
5
6
7
8
9
10
11
 
12
13
 
14
15
16
17
@@ -4,12 +4,14 @@
   from distutils.core import setup   +dulwich_version_string = '0.1.0' +  setup(name='dulwich',   description='Pure-Python Git Library',   keywords='git', - version='0.0.1', + version=dulwich_version_string,   url='http://launchpad.net/dulwich', - download_url='http://launchpad.net/dulwich', + download_url='http://samba.org/~jelmer/dulwich/dulwich-%s.tar.gz' % dulwich_version_string,   license='GPL',   author='Jelmer Vernooij',   author_email='jelmer@samba.org',