from setuptools import setup, find_packages setup( name='csst_fs', version='0.1.0', packages=find_packages(), install_requires=[ 'astropy>=5.3', 'fsspec>=2024.5.0', 's3fs>=2024.5.0' ], python_requires='>=3.9', description='csst pipeline handle file in local file system and remote s3 file system', long_description=open('README.md', encoding='utf-8').read(), long_description_content_type='text/markdown', url='http://gitee.zhejianglab.com/enterprise/csst-fs', author='Pan Qi', author_email='qipan@zhejianglab.com' )