Skip to content

Commit

Permalink
Adding long description
Browse files Browse the repository at this point in the history
  • Loading branch information
AgarFu authored May 12, 2022
1 parent 0f15a7b commit 6085357
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import setuptools
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()

setup_reqs = ["pytest", "pytest-cov", "pytest-runner", "flake8"]
setuptools.setup(
Expand All @@ -7,6 +10,8 @@
author="Intuit",
author_email="[email protected]",
description="A tool to search and replace files in a Git repo",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/argoproj-labs/gordian",
install_requires=["pygithub", "pyyaml", "jsonpatch", "deepdiff", "retry"],
setup_requires=setup_reqs,
Expand Down

0 comments on commit 6085357

Please sign in to comment.