Skip to content

Commit

Permalink
Merge branch 'release/2.5.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
wolph committed Jan 26, 2021
2 parents a61c528 + 3e8f93c commit fea239f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
11 changes: 11 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,11 @@
include coverage.rc
include LICENSE
include MANIFEST.in
include pytest.ini
include README.rst
include requirements.txt
include setup.cfg
include setup.py
include tox.ini
recursive-include _python_utils_tests *.py
recursive-exclude __pycache__ *
2 changes: 1 addition & 1 deletion python_utils/__about__.py
@@ -1,5 +1,5 @@
__package_name__ = 'python-utils'
__version__ = '2.5.3'
__version__ = '2.5.4'
__author__ = 'Rick van Hattem'
__author_email__ = 'Wolph@wol.ph'
__description__ = (
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -28,7 +28,8 @@
description=about['__description__'],
url=about['__url__'],
license='BSD',
packages=setuptools.find_packages(exclude=['_python_utils_tests']),
packages=setuptools.find_packages(exclude=[
'_python_utils_tests', '*.__pycache__']),
long_description=long_description,
install_requires=['six'],
tests_require=['pytest'],
Expand Down

0 comments on commit fea239f

Please sign in to comment.