setup.py 1.39 KB
Newer Older
BO ZHANG's avatar
BO ZHANG committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import setuptools
import csst_proto

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

setuptools.setup(
    name='csst',
    version=csst_proto.__version__,
    author='CSST Team',
    author_email='bozhang@nao.cas.cn',
    description='The CSST pipeline',  # short description
    long_description=long_description,
    long_description_content_type="text/markdown",
    url='https://csst.readthedocs.io',
    project_urls={
        'Source': 'http://github.com/csster/csst',
    },
    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.7",
                 "Topic :: Scientific/Engineering :: Physics",
                 "Topic :: Scientific/Engineering :: Astronomy"],
    package_dir={'csst': 'csst'},
    # include_package_data=True,
    package_data={"": ["LICENSE", "README.md"],
                  "csst_proto": ["data/your_data.txt",
                                 ]},
    # install_requires=['sphinx',
    #                   'numpy',
    #                   'scipy', 'matplotlib',
    #                   'astropy', 'healpy', 'ccdproc', 'deepCR', 'photutils'],
    python_requires='>=3.7',
)