We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9d229f commit 8e0ab13Copy full SHA for 8e0ab13
setup.cfg
@@ -2,7 +2,6 @@
2
name = astroquery
3
version = 0.4.7.dev
4
description = Functions and classes to access online astronomical data resources
5
-# FIXME long_description =
6
author = The Astroquery Developers
7
license = BSD
8
url = http://astropy.org/astroquery
setup.py
@@ -15,4 +15,9 @@
15
16
from astropy_helpers.setup_helpers import setup
17
18
-setup()
+# Read the contents of the README file
19
+from pathlib import Path
20
+this_directory = Path(__file__).parent
21
+long_description = (this_directory / "README.rst").read_text()
22
+
23
+setup(long_description=long_description, long_description_content_type='text/x-rst')
0 commit comments