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 77ffd1b commit 6617687Copy full SHA for 6617687
astropy/setup_package.py
@@ -0,0 +1,4 @@
1
+# Licensed under a 3-clause BSD style license - see LICENSE.rst
2
+
3
+def get_package_data():
4
+ return {'astropy': ['astropy.cfg']}
setup.py
@@ -57,7 +57,7 @@
57
package_info = get_package_info()
58
59
# Add the project-global data
60
-package_info['package_data']['astropy'] = ['data/*']
+package_info['package_data'].setdefault('astropy', []).append('data/*')
61
62
# Currently the only entry points installed by Astropy are hooks to
63
# zest.releaser for doing Astropy's releases
0 commit comments