Commit af286a52 authored by BO ZHANG's avatar BO ZHANG 🏀
Browse files

updated requirements

parent 19597f04
Loading
Loading
Loading
Loading
Loading
+6 −8
Original line number Diff line number Diff line
numpy~=1.20.3
joblib~=1.1.0
#csst~=0.0.1
setuptools~=58.0.4
astropy~=5.1
pytest
coverage
pycodestyle~=2.8.0
 No newline at end of file
numpy==1.23.3
scipy==1.9.1
joblib==1.2.0
setuptools==58.0.4
astropy==5.1
pycodestyle==2.9.1
 No newline at end of file
+8 −7
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@ setuptools.setup(
    version=csst_proto.__version__,
    author='CSST Team',
    author_email='bozhang@nao.cas.cn',
    description='The CSST L1 pipeline prototype',  # short description
    description='The CSST L1 pipeline - prototype',  # short description
    long_description=long_description,
    long_description_content_type="text/markdown",
    url='https://csst-tb.bao.ac.cn/code/csst-l1/csst_proto',
@@ -22,18 +22,19 @@ setuptools.setup(
                 "Intended Audience :: Science/Research",
                 "License :: OSI Approved :: MIT License",
                 "Operating System :: OS Independent",
                 "Programming Language :: Python :: 3.8",
                 "Programming Language :: Python :: 3.9",
                 "Topic :: Scientific/Engineering :: Physics",
                 "Topic :: Scientific/Engineering :: Astronomy"],
    package_dir={'csst': 'csst'},
    package_dir={'csst_proto': 'csst_proto'},
    # include_package_data=True,
    package_data={"": ["LICENSE", "README.md"],
                  "csst_proto": ["data/test_image.txt",
                                 "data/table_data.csv"
                                 ]},
    # install_requires=['sphinx',
    #                   'numpy',
    #                   'scipy', 'matplotlib',
    #                   'astropy', 'healpy', 'ccdproc', 'deepCR', 'photutils'],
    # install_requires=['numpy>1.20.3',
    #                   'scipy',
    #                   'matplotlib',
    #                   'astropy',
    #                   ],
    python_requires='>=3.8',
)