setup.py 883 Bytes
Newer Older
Chen Yili's avatar
Chen Yili committed
1
import setuptools
Chen Yili's avatar
Chen Yili committed
2
import csst_cpic_sim
Chen Yili's avatar
Chen Yili committed
3
4

setuptools.setup(
Chen Yili's avatar
Chen Yili committed
5
    name='csst_cpic_sim',
Chen Yili's avatar
Chen Yili committed
6
    version=csst_cpic_sim.__version__,
Chen Yili's avatar
Chen Yili committed
7
8
9
10
11
12
13
14
15
16
17
18
19
20
    author='CSST Team',
    author_email='gzhao@niaot.ac.cn',
    description='The CSST CPIC Simulation',  # short description
    packages=setuptools.find_packages(),
    license='MIT',
    classifiers=[
        "Development Status :: 5 - Production/Stable",
        "Intended Audience :: Science/Research",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
        "Programming Language :: Python :: 3.8",
        "Topic :: Scientific/Engineering :: Physics",
        "Topic :: Scientific/Engineering :: Astronomy"
    ],
Chen Yili's avatar
Chen Yili committed
21
    package_dir={'csst_cpic_sim': 'csst_cpic_sim'},
Chen Yili's avatar
Chen Yili committed
22
23
24
25
26
    include_package_data=False,

    install_requires=['numpy', 'scipy', 'astropy', 'pysynphot', 'hcipy'],
    python_requires='>=3.8',
)