Skip to content

Commit

Permalink
Version bump to 1.0.2 and packaging improvements.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Wurster committed Sep 23, 2015
1 parent 902469b commit a584887
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGES.md
@@ -1,6 +1,13 @@
Changelog
=========

1.0.2 - 2015-09-23
------------------

- General packaging and Travis-CI improvements.
- Don't include tests in MANIFEST.in - #8


1.0.1 - 2015-08-20
------------------

Expand Down
3 changes: 2 additions & 1 deletion MANIFEST.in
@@ -1,5 +1,6 @@
include AUTHORS.txt
include CHANGES.txt
include CHANGES.md
include LICENSE.txt
include MANIFEST.in
include README.rst
include setup.py
2 changes: 1 addition & 1 deletion click_plugins/__init__.py
Expand Up @@ -24,7 +24,7 @@ def subcommand(arg):
from click_plugins.core import with_plugins


__version__ = '1.0.1'
__version__ = '1.0.2'
__author__ = 'Kevin Wurster, Sean Gillies'
__email__ = 'wursterk@gmail.com, sean.gillies@gmail.com'
__source__ = 'https://github.com/click-contrib/click-plugins'
Expand Down
7 changes: 5 additions & 2 deletions setup.py
Expand Up @@ -6,13 +6,14 @@
"""


import codecs
import os

from setuptools import find_packages
from setuptools import setup


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


Expand Down Expand Up @@ -51,7 +52,9 @@
extras_require={
'dev': [
'pytest',
'pytest-cov'
'pytest-cov',
'wheel',
'coveralls'
],
},
include_package_data=True,
Expand Down

0 comments on commit a584887

Please sign in to comment.