Skip to content

Commit

Permalink
Remove old, outdated DESCRIPTION
Browse files Browse the repository at this point in the history
With this gone, PyPI will now use README for its documentation,
which is a lot more relevant.
  • Loading branch information
rajadain committed Jul 3, 2024
1 parent 0bc505d commit 9f199c0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion DESCRIPTION.rst

This file was deleted.

1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
include DESCRIPTION.rst
include *.md
include *.py
include LICENSE
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
from gwlfe.MultiUse_Fxns.Runoff.WashImperv_inner import cc as wipcc
from gwlfe.MultiUse_Fxns.Runoff.WashPerv_inner import cc as wpcc

# Get the long description from DESCRIPTION.rst
# Get the long description from README.md
with open(path.join(path.abspath(path.dirname(__file__)),
'DESCRIPTION.rst'), encoding='utf-8') as f:
'README.md'), encoding='utf-8') as f:
long_description = f.read()

tests_require = [
Expand All @@ -36,7 +36,7 @@
version='3.1.0',
description='A Python port of Generalized Watersheds Loading Functions - Enhanced (MapShed)',
long_description=long_description,
long_description_content_type='text/x-rst',
long_description_content_type='text/markdown',
url='https://github.com/WikiWatershed/gwlf-e',
author='Azavea Inc.',
author_email='[email protected]',
Expand Down

0 comments on commit 9f199c0

Please sign in to comment.