diff --git a/lusee/__init__.py b/lusee/__init__.py index e9e1c93..07bae11 100644 --- a/lusee/__init__.py +++ b/lusee/__init__.py @@ -1,3 +1,4 @@ +"""A package for simulation of LuSEE-Night.""" # -- FIXME -- # -mxp- commented out some imports since the hardcoded cache breaks diff --git a/pyproject.toml b/pyproject.toml index 9d1dc35..43ceb95 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,6 +3,19 @@ requires = ["flit_core >=3.2,<4"] build-backend = "flit_core.buildapi" [project] -name = "luseepy" +name = "lusee" authors = [{name = "Potekhin", email = "potekhin@bnl.gov"}] +readme = "README.md" +license = {file = "LICENSE"} +classifiers = ["License :: OSI Approved :: MIT License"] dynamic = ["version", "description"] +dependencies = [ + "numpy", + "scipy", + "matplotlib", + "astropy", + "fitsio", + "pyshtools", + "healpy", + "lunarsky" +]