-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from AdamTheisen/master
ENH: Updating setup.py for PIP page
- Loading branch information
Showing
1 changed file
with
5 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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() | ||
|
@@ -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, | ||
|