File tree Expand file tree Collapse file tree 4 files changed +15
-4
lines changed Expand file tree Collapse file tree 4 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
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
+
4
11
1.0.1 - 2015-08-20
5
12
------------------
6
13
Original file line number Diff line number Diff line change 1
1
include AUTHORS.txt
2
- include CHANGES.txt
2
+ include CHANGES.md
3
3
include LICENSE.txt
4
4
include MANIFEST.in
5
5
include README.rst
6
+ include setup.py
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ def subcommand(arg):
24
24
from click_plugins .core import with_plugins
25
25
26
26
27
- __version__ = '1.0.1 '
27
+ __version__ = '1.0.2 '
28
28
__author__ = 'Kevin Wurster, Sean Gillies'
29
29
30
30
__source__ = 'https://github.com/click-contrib/click-plugins'
Original file line number Diff line number Diff line change 6
6
"""
7
7
8
8
9
+ import codecs
9
10
import os
10
11
11
12
from setuptools import find_packages
12
13
from setuptools import setup
13
14
14
15
15
- with open ('README.rst' ) as f :
16
+ with codecs . open ('README.rst' , encoding = 'utf-8 ' ) as f :
16
17
long_desc = f .read ().strip ()
17
18
18
19
51
52
extras_require = {
52
53
'dev' : [
53
54
'pytest' ,
54
- 'pytest-cov'
55
+ 'pytest-cov' ,
56
+ 'wheel' ,
57
+ 'coveralls'
55
58
],
56
59
},
57
60
include_package_data = True ,
You can’t perform that action at this time.
0 commit comments