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" ], )