File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -190,3 +190,12 @@ Placeholders:
190190- ` {paths} ` - specially for ` browserify ` , include all Django app static folders:
191191 ` /path/to/app-1/static/:/path/to/app-2/static/:... ` (like ` PATH ` variable)
192192- ` {node_modules} ` - see ` COMPRESS_NODE_MODULES ` setting
193+
194+ ## Contribute and test
195+
196+ ``` sh
197+ git clone https://github.com/kottenator/django-compressor-toolkit.git
198+ cd django-compressor-toolkit
199+ pip install -e .[test]
200+ py.test
201+ ```
Original file line number Diff line number Diff line change 1- from setuptools import setup
1+ from setuptools import setup , find_packages
22
33import compressor_toolkit
44
55
66setup (
77 name = 'django-compressor-toolkit' ,
88 version = compressor_toolkit .__version__ ,
9- description = 'Set of plug-ins for django-compressor' ,
9+ description = 'Set of add-ons for django-compressor' ,
10+ long_description = (
11+ 'Simply enable SCSS and ES6 in your Django project. '
12+ 'Read more on `project\' s GitHub page '
13+ '<https://github.com/kottenator/django-compressor-toolkit>`_.'
14+ ),
1015 url = 'https://github.com/kottenator/django-compressor-toolkit' ,
1116 author = 'Rostyslav Bryzgunov' ,
1217 author_email = 'kottenator@gmail.com' ,
1318 license = 'MIT' ,
19+ packages = find_packages (exclude = ['tests' , 'tests.*' ]),
1420 include_package_data = True ,
1521 setup_requires = [
1622 'setuptools-git'
You can’t perform that action at this time.
0 commit comments