File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -102,6 +102,7 @@ def lookup(match):
102102 version = get_field (modpath , '__version__' ),
103103 author = get_field (modpath , '__author__' ),
104104 license = get_field (modpath , '__license__' ),
105+ url = get_field (modpath , '__url__' ),
105106 description = get_description (modpath )
106107 )
107108
Original file line number Diff line number Diff line change 44 name= '{{ module }}',
55 version= '{{ version }}',
66 author= '{{ author }}',
7- url= 'https://github .com /techtonik/python-patch/ ',
7+ url= '{{ url }} ',
88
99 description= '{{ description }}',
1010 license= '{{ license }}',
Original file line number Diff line number Diff line change 77 Copyright (c) 2008-2016 anatoly techtonik
88 Available under the terms of MIT license
99
10- https://github.com/techtonik/python-patch/
11-
1210"""
1311from __future__ import print_function
1412
1513__author__ = "anatoly techtonik <techtonik@gmail.com>"
1614__version__ = "1.16"
1715__license__ = "MIT"
16+ __url__ = "https://github.com/techtonik/python-patch"
1817
1918import copy
2019import logging
You can’t perform that action at this time.
0 commit comments