-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from LSSTDESC/u/jrbogart/release_improvements
U/jrbogart/release improvements
- Loading branch information
Showing
4 changed files
with
36 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
[build-system] | ||
requires = ["setuptools >= 61.0"] # PEP 621 compliant | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "skyCatalogs" | ||
version = "1.3.0" | ||
description = "Writes, reads catalogs input to LSST DESC simulations" | ||
readme = "README.md" | ||
authors = [{ name = "Joanne Bogart", email = "[email protected]" }] | ||
license = { file = "LICENCE" } | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
] | ||
keywords = ["desc", "python", "catalog", "simulation"] | ||
dependencies = [ | ||
'numpy', | ||
'healpy', | ||
'astropy', | ||
'pyarrow', | ||
'pandas', | ||
'importlib-metadata;python_version<"3.8"' | ||
] | ||
requires-python = ">=3.7" # For setuptools >= 61.0 support | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["python"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
from ._version import * | ||
##from ._version import * | ||
try: | ||
# For Python >= 3.8 | ||
from importlib import metadata | ||
except ImportError: | ||
# For Python < 3.8 | ||
import importlib_metadata as metadata | ||
|
||
__version__ = metadata.version("skyCatalogs") | ||
from .skyCatalogs import * | ||
from .catalog_creator import * |
This file was deleted.
Oops, something went wrong.