From 0efd787e9b063c217ec9fffc9cfa9f58ff3ad4b3 Mon Sep 17 00:00:00 2001 From: Brigitta Sipocz Date: Sun, 19 May 2019 13:16:27 +0200 Subject: [PATCH] CITATION file should be in the source to be distributed to user installs, using only a link at the root dir --- CITATION | 1 + MANIFEST.in | 1 + astroquery/setup_package.py | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) create mode 120000 CITATION diff --git a/CITATION b/CITATION new file mode 120000 index 0000000000..616076a6dd --- /dev/null +++ b/CITATION @@ -0,0 +1 @@ +astroquery/CITATION \ No newline at end of file diff --git a/MANIFEST.in b/MANIFEST.in index d131c89c1a..8bdf3638c3 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -2,6 +2,7 @@ include LICENSE.rst include README.rst include CHANGES.rst include CITATION +include astroquery/CITATION include astroquery/splatalogue/data/* include ez_setup.py diff --git a/astroquery/setup_package.py b/astroquery/setup_package.py index 75c231ef63..6504e87535 100644 --- a/astroquery/setup_package.py +++ b/astroquery/setup_package.py @@ -3,4 +3,4 @@ def get_package_data(): - return {'astroquery': ['astroquery.cfg']} + return {'astroquery': ['astroquery.cfg', 'CITATION']}