setup.py 1.44 KB
Newer Older
chenwei@shao.ac.cn's avatar
build  
chenwei@shao.ac.cn committed
1
2
3
4
5
6
7
import setuptools

with open("README.md", "r") as fh:
    long_description = fh.read()

setuptools.setup(
    name='csst_ifs_sim',
Chen Wei's avatar
Chen Wei committed
8
    version='0.7.02',
chenwei@shao.ac.cn's avatar
build  
chenwei@shao.ac.cn committed
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
    author='CSST Team',
    author_email='zhaojunyan@shao.ac.cn',
    description='The CSST - ifs - sim',  # short description
    long_description=long_description,
    long_description_content_type="text/markdown",
    url='https://csst-tb.bao.ac.cn/',
    # project_urls={
    #     'Source': 'https://csst-tb.bao.ac.cn/code/csst-l1/ifs/csst_ifs_sim',
    # },
    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"],
    package_dir={'csst_ifs_sim': 'csst_ifs_sim'},
    # include_package_data=True,
    package_data={"": ["LICENSE", "README.md"],
                  "csst_ifs_sim": ["ifs_so/*", "ifs_data/*", "ifs_data/refs/*", "ifs_data/refs/orbit20160925/*"]},
    # install_requires=['sphinx',
    #                   'numpy',
    #                   'scipy', 'matplotlib',
    #                   'astropy', 'healpy', 'ccdproc', 'deepCR', 'photutils'],
    python_requires='>=3.8',
)