Skip to content

Commit

Permalink
Add the readme as the long description
Browse files Browse the repository at this point in the history
  • Loading branch information
bnicholesdell committed Feb 16, 2023
1 parent 39e4318 commit e7354f7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion credential_type_plugin/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,18 @@
requirements = ['pysafeguard'] # add Python dependencies here
# e.g., requirements = ["PyYAML"]

from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()

setup(
name='safeguardcredentialtype',
version='0.9.0',
author='One Identity, Llc.',
author_email='[email protected]',
description='One Identity Safeguard Credential Type plugin for Ansible',
long_description='',
long_description=long_description,
long_description_content_type='text/markdown',
license='Apache 2.0',
keywords='ansible, One Identity',
url='http://oneidentity.com',
Expand Down

0 comments on commit e7354f7

Please sign in to comment.