Skip to content

Commit 4f5b7dc

Browse files
authored
Merge pull request #11 from paulovn/feature/python3
added download URL to setup
2 parents 9f491db + c7e5fbe commit 4f5b7dc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212

1313
from sparqlkernel.constants import __version__, LANGUAGE, DISPLAY_NAME
1414

15+
1516
PKGNAME = 'sparqlkernel'
17+
GITHUB_URL = 'https://github.com/paulovn/sparql-kernel'
1618

1719
setup_args = dict (
1820
name=PKGNAME,
@@ -24,7 +26,8 @@
2426
It is implemented as a Jupyter wrapper kernel, by using the Python
2527
SPARQLWrapper & rdflib packages''',
2628
license='3-clause BSD license',
27-
url='https://github.com/paulovn/sparql-kernel',
29+
url=GITHUB_URL,
30+
download_url = GITHUB_URL + '/tarball/v' + __version__,
2831
author='Paulo Villegas',
2932
author_email='paulo.vllgs@gmail.com',
3033

0 commit comments

Comments
 (0)