Newer
Older
import setuptools
import csst_proto
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
description='The CSST L1 pipeline - prototype', # short description
long_description=long_description,
long_description_content_type="text/markdown",
'Source': 'https://csst-tb.bao.ac.cn/code/csst-l1/csst_proto',
},
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",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Astronomy"],
# include_package_data=True,
package_data={"": ["LICENSE", "README.md"],
# install_requires=['numpy>1.20.3',
# 'scipy',
# 'matplotlib',
# 'astropy',
# ],