Skip to content

Commit f14a49c

Browse files
committed
Releasing first version: 0.5.0
1 parent adc0700 commit f14a49c

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
```

setup.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
1-
from setuptools import setup
1+
from setuptools import setup, find_packages
22

33
import compressor_toolkit
44

55

66
setup(
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'

0 commit comments

Comments
 (0)