diff --git a/gaiaapiclient/__init__.py b/gaiaapiclient/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gaiaapiclient/cone_search.py b/gaiaapiclient/cone_search.py new file mode 100644 index 0000000..cdeb2a8 --- /dev/null +++ b/gaiaapiclient/cone_search.py @@ -0,0 +1,3 @@ +# cone_search.py +# send an api request with the coordinates and search radius to the GaiaDBInterface server to fetch the GAIA sources + diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..e56ae18 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +certifi==2024.8.30 +charset-normalizer==3.3.2 +idna==3.10 +requests==2.32.3 +urllib3==2.2.3 diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..f6ed465 --- /dev/null +++ b/setup.py @@ -0,0 +1,10 @@ +# setup.py +from setuptools import setup, find_packages + + +setup( + name='gaiaapiclient', + version='0.1', + packages=find_packages(), + install_requires=[], +)