Skip to content

Commit

Permalink
[PyPI] Bump version to 0.8.2 and use find_packages instead
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinHock committed Apr 5, 2018
1 parent e6b2d37 commit afe6f0b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
from setuptools import find_packages
from setuptools import setup


VERSION = '0.8.1'
VERSION = '0.8.2'

setup(
name='detect_secrets',
packages=['detect_secrets'],
packages=find_packages(exclude=(['test*', 'tmp*'])),
version=VERSION,
description='Tool for detecting secrets in the codebase',
long_description="Check out detect-secrets on `GitHub <https://github.com/Yelp/detect-secrets>`_!",
Expand Down

0 comments on commit afe6f0b

Please sign in to comment.