File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 1
1
from distutils .core import setup
2
+
3
+ version = '0.1.2'
4
+
2
5
setup (
3
6
name = 'django-webpack-loader' ,
4
7
packages = ['webpack_loader' , 'webpack_loader/templatetags' ], # this must be the same as the name above
5
8
version = '0.1.1' ,
6
9
description = 'Load your webpack bundles and chunks in django' ,
7
10
author = 'Owais Lone' ,
8
11
author_email = 'hello@owaislone.org' ,
9
- download_url = 'https://github.com/owais/django-webpack-loader/tarball/0.0.3' ,
12
+ download_url = 'https://github.com/owais/django-webpack-loader/tarball/{}' . format ( version ) ,
10
13
url = 'https://github.com/owais/django-webpack-loader' , # use the URL to the github repo
11
14
keywords = ['django' , 'webpack' , 'assets' ], # arbitrary keywords
12
15
data_files = [("" , ["LICENSE" ])],
You can’t perform that action at this time.
0 commit comments