An error occurred while loading the file. Please try again.
setup.py 1.06 KiB
import setuptools
with open("requirements.txt", "r") as f:
    requirements = [
        req.strip()
        for req in f.readlines()
        if not req.startswith("#") and req.__contains__("==")
setuptools.setup(
    name='csst_cpic_sim',
    version='2.0.0',
    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"
    package_dir={'csst_cpic_sim': 'csst_cpic_sim'},
    include_package_data=True,
    package_data={
        'csst_cpic_sim': ['data/*.yaml', 'data/*.toml', 'data/*.txt']
    install_requires=requirements,
    python_requires='>=3.8',