25 lines
791 B
Python
25 lines
791 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="d4science_copernicus_cds",
|
|
version="1.0.0",
|
|
description="A D4Science library for managing CDS API authentication in JupyterLab",
|
|
long_description=open("README.md").read(),
|
|
long_description_content_type="text/markdown",
|
|
author="Alfredo Oliviero",
|
|
author_email="alfredo.oliviero@isti.cnr.it",
|
|
url="https://code-repo.d4science.org/D4Science/d4science_copernicus_cds.git",
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
"cdsapi>=0.7.2",
|
|
"attrs",
|
|
"typing_extensions"
|
|
],
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: European Union Public Licence",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
python_requires=">=3.6",
|
|
)
|