Skip to content

Commit d1aec66

Browse files
committed
Added license to setup.py
1 parent 01b41d3 commit d1aec66

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

setup.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,18 @@
22
setup(
33
name = 'django-webpack-loader',
44
packages = ['webpack_loader', 'webpack_loader/templatetags'], # this must be the same as the name above
5-
version = '0.0.4.1',
5+
version = '0.0.4.2',
66
description = 'Load your webpack bundles and chunks in django',
77
author = 'Owais Lone',
88
author_email = 'hello@owaislone.org',
99
download_url = 'https://github.com/owais/django-webpack-loader/tarball/0.0.3',
1010
url = 'https://github.com/owais/django-webpack-loader', # use the URL to the github repo
1111
keywords = ['django', 'webpack', 'assets'], # arbitrary keywords
12-
classifiers = [],
12+
data_files = [("", ["LICENSE"])],
13+
classifiers = [
14+
'Programming Language :: Python :: 2.7',
15+
'Framework :: Django',
16+
'Environment :: Web Environment',
17+
'License :: OSI Approved :: MIT License',
18+
],
1319
)

0 commit comments

Comments
 (0)