Skip to content

Commit

Permalink
Merge pull request #26 from AdamTheisen/master
Browse files Browse the repository at this point in the history
ENH: Updating setup.py for PIP page
  • Loading branch information
AdamTheisen authored Nov 22, 2021
2 parents 2fe09fc + acc0b75 commit 8f07a2b
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
Expand Up @@ -24,6 +24,9 @@

here = path.abspath(path.dirname(__file__))

with open(path.join(here, 'README.md'), encoding='utf-8') as readme_file:
readme = readme_file.read()

with open(path.join(here, 'requirements.txt')) as requirements_file:
# Parse requirements.txt, ignoring any commented-out lines.
requirements = [line for line in requirements_file.read().splitlines()
Expand All @@ -37,6 +40,8 @@
description="Python package for weather radar quality tracking",
author="Adam Theisen",
author_email='[email protected]',
long_description=readme,
long_description_content_type='text/x-rst',
packages=find_packages(),
entry_points={'console_scripts': []},
include_package_data=True,
Expand Down

0 comments on commit 8f07a2b

Please sign in to comment.