Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel-p committed Jun 21, 2024
2 parents 8d611c6 + d9917e5 commit d0077fa
Show file tree
Hide file tree
Showing 34 changed files with 11,301 additions and 1,542 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
<div align="center">
<br>
<img src="/docs/_static/asteca_icon.webp" alt="UCC" width="200"/>
<br>
</div>


# ASteCA [Automated Stellar Cluster Analysis]
[![AA](https://img.shields.io/badge/A%26A-576--A6,%202015-yellowgreen.svg)][1]
Expand Down
14 changes: 9 additions & 5 deletions asteca/__init__.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
from .cluster import cluster as cluster
from . import membership as membership
from .isochrones import isochrones as isochrones
from .synthetic import synthetic as synthetic
from .likelihood import likelihood as likelihood
from .cluster import Cluster as cluster
from .membership import Membership as membership
from .isochrones import Isochrones as isochrones
from .synthetic import Synthetic as synthetic
from .likelihood import Likelihood as likelihood
from . import plot as plot

from contextlib import suppress
import importlib.metadata
from pathlib import Path


__all__ = ["cluster", "membership", "isochrones", "synthetic", "likelihood", "plot"]


def extract_version() -> str:
"""Returns either the version of the installed package or the one
found in nearby pyproject.toml
Expand Down
Loading

0 comments on commit d0077fa

Please sign in to comment.