We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9885f5a commit c08c6f0Copy full SHA for c08c6f0
1 file changed
setup.py
@@ -77,6 +77,9 @@ def getversioncfg():
77
78
versiondata = getversioncfg()
79
80
+with open(os.path.join(MYDIR, 'README.rst')) as fp:
81
+ long_description = fp.read()
82
+
83
# define distribution
84
setup_args = dict(
85
name = "diffpy.srfit",
@@ -92,6 +95,8 @@ def getversioncfg():
92
95
maintainer = "Pavol Juhas",
93
96
maintainer_email = "pavol.juhas@gmail.com",
94
97
description = "SrFit - Structure refinement from diffraction data",
98
+ long_description = long_description,
99
+ long_description_content_type = 'text/x-rst',
100
license = 'BSD-style license',
101
url = "https://github.com/diffpy/diffpy.srfit",
102
keywords = "optimization constraints restraints structure refinement complex modeling",
0 commit comments