Skip to content

Commit ada357b

Browse files
committed
Releasing first version: 0.5.0
1 parent 6f6ee8b commit ada357b

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Change Log
2+
3+
## 0.5.0 - 2015-12-31
4+
5+
### Added
6+
7+
- pre-compiler for SCSS
8+
- pre-compiler for ES6
9+
- Django app infrastructure

compressor_toolkit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# PEP 440 - version number format
2-
VERSION = (0, 5, 0, 'dev0')
2+
VERSION = (0, 5, 0)
33

44
# PEP 396 - module version variable
55
__version__ = '.'.join(map(str, VERSION))

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[pytest]
22
python_paths = tests/test_project
3-
testpaths = tests/unit_tests/ tests/integration_tests/
3+
testpaths = tests/unit_tests tests/integration_tests
44
addopts =
55
--ds test_project.settings
66
--cov compressor_toolkit

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from setuptools import setup
2+
23
import compressor_toolkit
34

45

@@ -31,6 +32,7 @@
3132
'Intended Audience :: Developers',
3233
'License :: OSI Approved :: MIT License',
3334
'Operating System :: OS Independent',
35+
'Programming Language :: Python :: 2'
3436
'Programming Language :: Python :: 3'
3537
]
3638
)

0 commit comments

Comments
 (0)