-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use README.md for long description (#55)
* Use README.md for long description * Dont use encoding in open for py2 support * Add short description and bump version * Update description string
- Loading branch information
Showing
2 changed files
with
9 additions
and
15 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
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 |
---|---|---|
|
@@ -2,13 +2,19 @@ | |
|
||
from setuptools import setup, Extension | ||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setup( | ||
name="pypredict", | ||
version="1.6.2", | ||
version="1.6.3", | ||
author="Jesse Trutna", | ||
author_email="[email protected]", | ||
maintainer="Spire Global Inc", | ||
maintainer_email="[email protected]", | ||
description="Interface to the Predict satellite tracking and orbital prediction library", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/nsat/pypredict", | ||
py_modules=["predict"], | ||
ext_modules=[Extension("cpredict", ["predict.c"])], | ||
|