Skip to content

Commit

Permalink
[PyPI] Bump version to 0.8.0, finalize setup.py, add description-file…
Browse files Browse the repository at this point in the history
… to setup.cfg
  • Loading branch information
KevinHock committed Apr 5, 2018
1 parent d33ff83 commit 204ac23
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 3 deletions.
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
[metadata]
description-file = README.md

[wheel]
universal = True
24 changes: 21 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
from setuptools import find_packages
from setuptools import setup


VERSION = '0.8.0'

setup(
name='detect_secrets',
packages='detect_secrets',
version=VERSION,
description='Tool for detecting secrets in the codebase',
long_description="Check out detect-secrets on `GitHub <https://github.com/Yelp/detect-secrets>`_!",
license="Copyright Yelp, Inc. 2018",
author='Aaron Loo',
packages=find_packages(exclude=(['test*', 'tmp*'])),
url='https://github.com/Yelp/detect-secrets',
download_url='https://github.com/Yelp/detect-secrets/archive/{}.tar.gz'.format(VERSION),
keywords=['secret-management', 'pre-commit', 'security', 'entropy-checks'],
install_requires=[
'enum34',
'future',
Expand All @@ -18,5 +26,15 @@
'detect-secrets-hook = detect_secrets.pre_commit_hook:main',
],
},
version='0.7.0',
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Topic :: Utilities",
"Environment :: Console",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
]
)

0 comments on commit 204ac23

Please sign in to comment.