Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove rst file and update setup.py #61

Merged
merged 1 commit into from
Jul 28, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pointpats: Point Pattern Analysis in PySAL

Statistical analysis of planar point patterns.

This package is part of a [refactoring of PySAL](https://github.com/pysal/pysal/wiki/PEP-13:-Refactor-PySAL-Using-Submodules).
This package is part of [PySAL](https://pysal.org): The Python Spatial Analysis Library.

Introduction
------------
Expand Down Expand Up @@ -79,4 +79,4 @@ BibTeX Citation
doi = {10.5281/zenodo.3265637},
url = {https://doi.org/10.5281/zenodo.3265637}
}
```
```
88 changes: 0 additions & 88 deletions README.rst

This file was deleted.

4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
with open('pointpats/__init__.py', 'r') as f:
exec(f.readline())

with open('README.rst', 'r', encoding='utf8') as file:
with open('README.md', 'r', encoding='utf8') as file:
long_description = file.read()

def _get_requirements_from_files(groups_files):
Expand Down Expand Up @@ -40,7 +40,7 @@ def setup_package():
version=__version__,
description='Methods and Functions for planar point pattern analysis',
long_description = long_description,
long_description_content_type='text/x-rst',
long_description_content_type='text/markdown',
url='https://github.com/pysal/pointpats',
maintainer='Hu Shao',
maintainer_email='shaohutiger@gmail.com',
Expand Down