Compare commits

..

No commits in common. "main" and "v0.0.2" have entirely different histories.
main ... v0.0.2

3 changed files with 5 additions and 24 deletions

View File

@ -1,22 +1,2 @@
# PySphereProj This is pysphereproj
This is a simple package made of 3d interpolators (CIC based) and 3d to healpix projector.
Everything is contained in the package `sphereproj`.
Here is a short example for spherical projection:
```python
import sphereproj
import numpy as np
N = 256
Nside=128
rho = np.random.randn(N,N,N)
result = sphereproj.spherical_projection(Nside, density, 0, 128, integrator_id=1)
# min_distance, max_distance, progress=1, integrator_id=0, shifter=None, booster=-1)
```

View File

@ -1,5 +1,5 @@
[project] [project]
version = "1.0.0" version = "0.0.2"
requires-python = ">= 3.8" requires-python = ">= 3.8"
name = "pysphereproj" name = "pysphereproj"
dependencies = [ dependencies = [
@ -68,9 +68,10 @@ env = "GIT_COMMIT_AUTHOR"
default = "semantic-release <semantic-release>" default = "semantic-release <semantic-release>"
[tool.semantic_release.commit_parser_options] [tool.semantic_release.commit_parser_options]
allowed_tags = ["build", "chore", "ci", "docs", "feat", "fix", "perf", "style", "refactor", "test"] allowed_tags = ["major","build", "chore", "ci", "docs", "feat", "fix", "perf", "style", "refactor", "test"]
minor_tags = ["feat"] minor_tags = ["feat"]
patch_tags = ["fix", "perf"] patch_tags = ["fix", "perf"]
major_tags = ["major"]
default_bump_level = 0 default_bump_level = 0
[tool.semantic_release.remote] [tool.semantic_release.remote]

View File

@ -1,3 +1,3 @@
from ._project import spherical_projection, project_cic, interp3d from ._project import spherical_projection, project_cic, interp3d
__version__ = "1.0.0" __version__ = "1.0"