forked from schocco/django-staticfiles-webpack
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
25 lines (23 loc) · 873 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# coding=utf-8
"""
"""
from distutils.core import setup
version = '0.1'
setup(
name = 'django-staticfiles-webpack-dev',
packages = ['webpack'],
version = version,
description = 'Support for loading webpack-dev-server served files in Django templates via the static files app.',
author = 'Ryan Gonzalez, Rocco Schulz',
author_email = 'ryan@ionizedmedia.com',
url = 'https://github.com/ryngonzalez/django-staticfiles-webpack-dev',
download_url = 'https://github.com/ryngonzalez/django-staticfiles-webpack-dev/webpack/tarball/{}'.format(version),
keywords = ['django', 'webpack', 'assets', 'build', 'static', 'webpack-dev-server'],
classifiers = [
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Framework :: Django',
'Environment :: Web Environment',
'License :: OSI Approved :: MIT License',
],
)