Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def run_setup():
"""Run package setup."""
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
try:
with codecs.open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
except:
# This happens when running tests
long_description = None
setup(
name='keyper',
version=keyper.__version__,
description='A utility for dealing with the macOS keychain.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/Microsoft/keyper',
author='Dale Myers',
author_email='dalemy@microsoft.com',
license='MIT',
install_requires=[],
python_requires='>=3.7',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Environment :: MacOS X',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',