setup.py 591 Bytes
Newer Older
qi pan's avatar
qi pan committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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'
)