Commit 910c2586 authored by BO ZHANG's avatar BO ZHANG 🏀
Browse files

moved __version__ to __init__.py

parent 1550e23a
__version__ = "0.0.1"
\ No newline at end of file
__version__ = "0.0.4"
import setuptools
import csst
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='csst',
version='0.0.3',
version=csst.__version__,
author='CSST Team',
author_email='bozhang@nao.cas.cn',
description='The CSST pipeline', # short description
......@@ -24,5 +25,6 @@ setuptools.setup(
package_dir={'csst': 'csst'},
include_package_data=False,
package_data={"": ["LICENSE", "README.md"]},
requires=['numpy', 'scipy', 'astropy', 'joblib']
requires=['numpy', 'scipy', 'astropy'],
python_requires='>=3.9.7',
)
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment