initial commit. Create the module structure, add requirements.txt

This commit is contained in:
Никита Тырин 2024-09-18 13:34:20 +03:00
parent 7003de3930
commit ad2495acdf
4 changed files with 18 additions and 0 deletions

View File

View File

@ -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

5
requirements.txt Normal file
View File

@ -0,0 +1,5 @@
certifi==2024.8.30
charset-normalizer==3.3.2
idna==3.10
requests==2.32.3
urllib3==2.2.3

10
setup.py Normal file
View File

@ -0,0 +1,10 @@
# setup.py
from setuptools import setup, find_packages
setup(
name='gaiaapiclient',
version='0.1',
packages=find_packages(),
install_requires=[],
)