setup.py 625 Bytes
Newer Older
Wu You's avatar
Wu You committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages

setup(
    name="csst_brick",  
    version="0.1",
    packages=find_packages(include=["csst_brick", "csst_brick.*"]),
    description="Package for generating and manipulating bricks based on HEALPix pixelization of the sky",
    long_description=open('README.md').read(), 
    long_description_content_type="text/markdown",
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
    ],
    install_requires=[ 
        "healpy", 
        "numpy",
        "astropy"
    ],
)