We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3029098 commit 5ee28c4Copy full SHA for 5ee28c4
setup.py
@@ -76,6 +76,9 @@ def getversioncfg():
76
77
versiondata = getversioncfg()
78
79
+with open(os.path.join(MYDIR, 'README.rst')) as fp:
80
+ long_description = fp.read()
81
+
82
# define distribution
83
setup_args = dict(
84
name = "diffpy.structure",
@@ -97,6 +100,8 @@ def getversioncfg():
97
100
url = 'https://github.com/diffpy/diffpy.structure',
98
101
description = "Crystal structure container "
99
102
"and parsers for structure formats.",
103
+ long_description = long_description,
104
+ long_description_content_type = 'text/x-rst',
105
license = 'BSD-style license',
106
keywords = "crystal structure data storage CIF PDB",
107
classifiers = [
0 commit comments