We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80be686 commit c02bc99Copy full SHA for c02bc99
1 file changed
setup.py
@@ -137,6 +137,9 @@ def getversioncfg():
137
138
versiondata = getversioncfg()
139
140
+with open(os.path.join(MYDIR, 'README.rst')) as fp:
141
+ long_description = fp.read()
142
+
143
# define distribution
144
setup_args = dict(
145
name = "diffpy.srreal",
@@ -157,6 +160,8 @@ def getversioncfg():
157
160
maintainer_email = "pavol.juhas@gmail.com",
158
161
description = ("calculators for PDF, bond valence sum, and other "
159
162
"quantities based on atom pair interaction."),
163
+ long_description = long_description,
164
+ long_description_content_type = 'text/x-rst',
165
license = 'BSD-style license',
166
url = "https://github.com/diffpy/diffpy.srreal/",
167
keywords = "PDF BVS atom overlap calculator real-space",
0 commit comments