forked from gramps-project/gramps
-
Notifications
You must be signed in to change notification settings - Fork 0
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 PyPI long description
- Loading branch information
Showing
1 changed file
with
6 additions
and
9 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 |
---|---|---|
|
@@ -425,22 +425,19 @@ def run(self): | |
|
||
data_files = data_files_core + data_files_gui | ||
|
||
with open("README.md", "r") as f: | ||
readme_text = f.read() | ||
|
||
# ------------------------------------------------------------------------- | ||
# | ||
# Setup | ||
# | ||
# ------------------------------------------------------------------------- | ||
setup( | ||
name="gramps", | ||
description=( | ||
"Gramps (Genealogical Research and Analysis Management " "Programming System)" | ||
), | ||
long_description=( | ||
"Gramps (Genealogical Research and Analysis " | ||
"Management Programming System) is a full featured " | ||
"genealogy program supporting a Python based plugin " | ||
"system." | ||
), | ||
description="Gramps (Genealogical Research and Analysis Management Programming System)", | ||
long_description=readme_text, | ||
long_description_content_type="text/markdown", | ||
version=VERSION, | ||
author="Donald N. Allingham", | ||
author_email="[email protected]", | ||
|