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

moved __version__ to __init__.py

parent 1550e23a
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
__version__ = "0.0.1"

 No newline at end of file
__version__ = "0.0.4"
+4 −2
Original line number Original line Diff line number Diff line
import setuptools
import setuptools
import csst


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


setuptools.setup(
setuptools.setup(
    name='csst',
    name='csst',
    version='0.0.3',
    version=csst.__version__,
    author='CSST Team',
    author='CSST Team',
    author_email='bozhang@nao.cas.cn',
    author_email='bozhang@nao.cas.cn',
    description='The CSST pipeline',  # short description
    description='The CSST pipeline',  # short description
@@ -24,5 +25,6 @@ setuptools.setup(
    package_dir={'csst': 'csst'},
    package_dir={'csst': 'csst'},
    include_package_data=False,
    include_package_data=False,
    package_data={"": ["LICENSE", "README.md"]},
    package_data={"": ["LICENSE", "README.md"]},
    requires=['numpy', 'scipy', 'astropy', 'joblib']
    requires=['numpy', 'scipy', 'astropy'],
    python_requires='>=3.9.7',
)
)