Skip to content

Commit a584887

Browse files
author
Kevin Wurster
committed
Version bump to 1.0.2 and packaging improvements.
1 parent 902469b commit a584887

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

CHANGES.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Changelog
22
=========
33

4+
1.0.2 - 2015-09-23
5+
------------------
6+
7+
- General packaging and Travis-CI improvements.
8+
- Don't include tests in MANIFEST.in - #8
9+
10+
411
1.0.1 - 2015-08-20
512
------------------
613

MANIFEST.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
include AUTHORS.txt
2-
include CHANGES.txt
2+
include CHANGES.md
33
include LICENSE.txt
44
include MANIFEST.in
55
include README.rst
6+
include setup.py

click_plugins/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def subcommand(arg):
2424
from click_plugins.core import with_plugins
2525

2626

27-
__version__ = '1.0.1'
27+
__version__ = '1.0.2'
2828
__author__ = 'Kevin Wurster, Sean Gillies'
2929
3030
__source__ = 'https://github.com/click-contrib/click-plugins'

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@
66
"""
77

88

9+
import codecs
910
import os
1011

1112
from setuptools import find_packages
1213
from setuptools import setup
1314

1415

15-
with open('README.rst') as f:
16+
with codecs.open('README.rst', encoding='utf-8') as f:
1617
long_desc = f.read().strip()
1718

1819

@@ -51,7 +52,9 @@
5152
extras_require={
5253
'dev': [
5354
'pytest',
54-
'pytest-cov'
55+
'pytest-cov',
56+
'wheel',
57+
'coveralls'
5558
],
5659
},
5760
include_package_data=True,

0 commit comments

Comments
 (0)