astrowidgets 0.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- astrowidgets-0.0.0/.git-blame-ignore-revs +3 -0
- astrowidgets-0.0.0/.gitattributes +2 -0
- astrowidgets-0.0.0/.github/dependabot.yml +17 -0
- astrowidgets-0.0.0/.github/workflows/ci_workflows.yml +104 -0
- astrowidgets-0.0.0/.github/workflows/predeps_workflow.yml +30 -0
- astrowidgets-0.0.0/.github/workflows/publish.yml +37 -0
- astrowidgets-0.0.0/.gitignore +58 -0
- astrowidgets-0.0.0/.pre-commit-config.yaml +21 -0
- astrowidgets-0.0.0/.readthedocs.yaml +25 -0
- astrowidgets-0.0.0/CHANGES.rst +30 -0
- astrowidgets-0.0.0/CODE_OF_CONDUCT.md +1 -0
- astrowidgets-0.0.0/LICENSE.rst +25 -0
- astrowidgets-0.0.0/MANIFEST.in +19 -0
- astrowidgets-0.0.0/PKG-INFO +84 -0
- astrowidgets-0.0.0/README.rst +49 -0
- astrowidgets-0.0.0/astrowidgets/__init__.py +7 -0
- astrowidgets-0.0.0/astrowidgets/bqplot.py +802 -0
- astrowidgets-0.0.0/astrowidgets/cursor_info.py +263 -0
- astrowidgets-0.0.0/astrowidgets/data/README.rst +6 -0
- astrowidgets-0.0.0/astrowidgets/ginga.py +967 -0
- astrowidgets-0.0.0/astrowidgets/tests/__init__.py +4 -0
- astrowidgets-0.0.0/astrowidgets/tests/conftest.py +17 -0
- astrowidgets-0.0.0/astrowidgets/tests/test_cursor_info.py +262 -0
- astrowidgets-0.0.0/astrowidgets/tests/test_widget_api_bqplot.py +474 -0
- astrowidgets-0.0.0/astrowidgets/tests/test_widget_api_ginga.py +359 -0
- astrowidgets-0.0.0/astrowidgets.egg-info/PKG-INFO +84 -0
- astrowidgets-0.0.0/astrowidgets.egg-info/SOURCES.txt +50 -0
- astrowidgets-0.0.0/astrowidgets.egg-info/dependency_links.txt +1 -0
- astrowidgets-0.0.0/astrowidgets.egg-info/requires.txt +22 -0
- astrowidgets-0.0.0/astrowidgets.egg-info/top_level.txt +1 -0
- astrowidgets-0.0.0/conftest.py +28 -0
- astrowidgets-0.0.0/docs/Makefile +133 -0
- astrowidgets-0.0.0/docs/_templates/autosummary/base.rst +2 -0
- astrowidgets-0.0.0/docs/_templates/autosummary/class.rst +2 -0
- astrowidgets-0.0.0/docs/_templates/autosummary/module.rst +2 -0
- astrowidgets-0.0.0/docs/astrowidgets/api.rst +7 -0
- astrowidgets-0.0.0/docs/astrowidgets/index.rst +68 -0
- astrowidgets-0.0.0/docs/conf.py +196 -0
- astrowidgets-0.0.0/docs/index.rst +34 -0
- astrowidgets-0.0.0/docs/install.rst +155 -0
- astrowidgets-0.0.0/docs/make.bat +170 -0
- astrowidgets-0.0.0/example_notebooks/README.md +1 -0
- astrowidgets-0.0.0/example_notebooks/bqplot_widget.ipynb +775 -0
- astrowidgets-0.0.0/example_notebooks/ginga_wcsaxes.ipynb +226 -0
- astrowidgets-0.0.0/example_notebooks/ginga_widget.ipynb +870 -0
- astrowidgets-0.0.0/example_notebooks/gui_interactions.ipynb +139 -0
- astrowidgets-0.0.0/example_notebooks/named_markers.ipynb +299 -0
- astrowidgets-0.0.0/licenses/README.rst +9 -0
- astrowidgets-0.0.0/pixi.lock +7970 -0
- astrowidgets-0.0.0/pyproject.toml +130 -0
- astrowidgets-0.0.0/setup.cfg +4 -0
- astrowidgets-0.0.0/tox.ini +30 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# To get started with Dependabot version updates, you'll need to specify which
|
|
2
|
+
# package ecosystems to update and where the package manifests are located.
|
|
3
|
+
# Please see the documentation for all configuration options:
|
|
4
|
+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
|
5
|
+
|
|
6
|
+
version: 2
|
|
7
|
+
updates:
|
|
8
|
+
- package-ecosystem: "github-actions" # See documentation for possible values
|
|
9
|
+
directory: ".github/workflows" # Location of package manifests
|
|
10
|
+
schedule:
|
|
11
|
+
interval: "monthly"
|
|
12
|
+
groups:
|
|
13
|
+
actions:
|
|
14
|
+
patterns:
|
|
15
|
+
- "*"
|
|
16
|
+
cooldown:
|
|
17
|
+
default-days: 7
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
pull_request:
|
|
6
|
+
schedule:
|
|
7
|
+
# Weekly Friday 5AM build
|
|
8
|
+
# * is a special character in YAML so you have to quote this string
|
|
9
|
+
- cron: '0 5 * * 5'
|
|
10
|
+
|
|
11
|
+
concurrency:
|
|
12
|
+
group: ${{ github.workflow }}-${{ github.ref }}
|
|
13
|
+
cancel-in-progress: true
|
|
14
|
+
|
|
15
|
+
permissions:
|
|
16
|
+
contents: read
|
|
17
|
+
|
|
18
|
+
jobs:
|
|
19
|
+
tests:
|
|
20
|
+
runs-on: ${{ matrix.os }}
|
|
21
|
+
strategy:
|
|
22
|
+
fail-fast: true
|
|
23
|
+
matrix:
|
|
24
|
+
os: [windows-latest, macos-latest, ubuntu-latest]
|
|
25
|
+
steps:
|
|
26
|
+
- name: Checkout code
|
|
27
|
+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
28
|
+
- name: Set up Python
|
|
29
|
+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
|
|
30
|
+
with:
|
|
31
|
+
python-version: '3.12'
|
|
32
|
+
- name: Install and build
|
|
33
|
+
run: python -m pip install tox --upgrade
|
|
34
|
+
- name: Run tests
|
|
35
|
+
run: tox -e py312-test
|
|
36
|
+
|
|
37
|
+
devtests:
|
|
38
|
+
runs-on: ubuntu-latest
|
|
39
|
+
steps:
|
|
40
|
+
- name: Checkout code
|
|
41
|
+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
42
|
+
- name: Set up Python
|
|
43
|
+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
|
|
44
|
+
with:
|
|
45
|
+
python-version: '3.13'
|
|
46
|
+
- name: Install and build
|
|
47
|
+
run: python -m pip install tox --upgrade
|
|
48
|
+
- name: Run tests
|
|
49
|
+
run: tox -e py313-test-devdeps
|
|
50
|
+
|
|
51
|
+
pixi:
|
|
52
|
+
runs-on: ${{ matrix.os }}
|
|
53
|
+
strategy:
|
|
54
|
+
matrix:
|
|
55
|
+
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
56
|
+
steps:
|
|
57
|
+
- name: Checkout code
|
|
58
|
+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
59
|
+
- name: Set up pixi
|
|
60
|
+
uses: prefix-dev/setup-pixi@v0.10.0
|
|
61
|
+
with:
|
|
62
|
+
run-install: false
|
|
63
|
+
- name: Set up pixi environment
|
|
64
|
+
run: pixi install
|
|
65
|
+
- name: Verify install
|
|
66
|
+
run: pixi run python -c "import astrowidgets"
|
|
67
|
+
- name: Run tests (pixi)
|
|
68
|
+
run: pixi run test
|
|
69
|
+
|
|
70
|
+
pixi-downstream:
|
|
71
|
+
runs-on: ${{ matrix.os }}
|
|
72
|
+
strategy:
|
|
73
|
+
matrix:
|
|
74
|
+
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
75
|
+
steps:
|
|
76
|
+
- name: Checkout code
|
|
77
|
+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
78
|
+
- name: Set up pixi
|
|
79
|
+
uses: prefix-dev/setup-pixi@v0.10.0
|
|
80
|
+
with:
|
|
81
|
+
run-install: false
|
|
82
|
+
- name: Create downstream project
|
|
83
|
+
run: |
|
|
84
|
+
mkdir downstream && cd downstream
|
|
85
|
+
pixi init
|
|
86
|
+
- name: Add dependencies (simulate user env)
|
|
87
|
+
working-directory: downstream
|
|
88
|
+
run: pixi add numpy scipy astropy ipywidgets
|
|
89
|
+
- name: Add local package (Unix)
|
|
90
|
+
if: runner.os != 'Windows'
|
|
91
|
+
working-directory: downstream
|
|
92
|
+
run: pixi add --pypi "astrowidgets @ file://$GITHUB_WORKSPACE"
|
|
93
|
+
- name: Add local package (Windows)
|
|
94
|
+
if: runner.os == 'Windows'
|
|
95
|
+
working-directory: downstream
|
|
96
|
+
shell: pwsh
|
|
97
|
+
run: |
|
|
98
|
+
$path = $env:GITHUB_WORKSPACE -replace '\\','/'
|
|
99
|
+
pixi add --pypi ("astrowidgets @ file:///" + $path)
|
|
100
|
+
- name: Install and verify
|
|
101
|
+
working-directory: downstream
|
|
102
|
+
run: |
|
|
103
|
+
pixi install
|
|
104
|
+
pixi run python -c "import astrowidgets"
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
name: rc_testing
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
|
|
6
|
+
concurrency:
|
|
7
|
+
group: ${{ github.workflow }}-${{ github.ref }}
|
|
8
|
+
cancel-in-progress: true
|
|
9
|
+
|
|
10
|
+
permissions:
|
|
11
|
+
contents: read
|
|
12
|
+
|
|
13
|
+
jobs:
|
|
14
|
+
tests:
|
|
15
|
+
runs-on: ${{ matrix.os }}
|
|
16
|
+
strategy:
|
|
17
|
+
fail-fast: true
|
|
18
|
+
matrix:
|
|
19
|
+
os: [windows-latest, macos-latest, ubuntu-latest]
|
|
20
|
+
steps:
|
|
21
|
+
- name: Checkout code
|
|
22
|
+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
23
|
+
- name: Set up Python
|
|
24
|
+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
|
|
25
|
+
with:
|
|
26
|
+
python-version: '3.12'
|
|
27
|
+
- name: Install and build
|
|
28
|
+
run: python -m pip install tox --upgrade
|
|
29
|
+
- name: Run tests
|
|
30
|
+
run: tox -e py312-test-predeps
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
name: Release
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
|
|
6
|
+
jobs:
|
|
7
|
+
build-n-publish:
|
|
8
|
+
name: Build and publish Python 🐍 distributions 📦 to PyPI
|
|
9
|
+
runs-on: ubuntu-latest
|
|
10
|
+
if: github.repository == 'astropy/astrowidgets'
|
|
11
|
+
|
|
12
|
+
steps:
|
|
13
|
+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
14
|
+
with:
|
|
15
|
+
fetch-depth: 0
|
|
16
|
+
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
|
|
17
|
+
with:
|
|
18
|
+
python-version: '3.11'
|
|
19
|
+
|
|
20
|
+
- name: Install python-build and twine
|
|
21
|
+
run: python -m pip install build "twine>=3.3"
|
|
22
|
+
|
|
23
|
+
- name: Build package
|
|
24
|
+
run: python -m build --sdist --wheel .
|
|
25
|
+
|
|
26
|
+
- name: List result
|
|
27
|
+
run: ls -l dist
|
|
28
|
+
|
|
29
|
+
- name: Check dist
|
|
30
|
+
run: python -m twine check --strict dist/*
|
|
31
|
+
|
|
32
|
+
- name: Publish distribution 📦 to PyPI
|
|
33
|
+
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
|
|
34
|
+
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # v1.14.0
|
|
35
|
+
with:
|
|
36
|
+
user: __token__
|
|
37
|
+
password: ${{ secrets.PYPI_TOKEN }}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# Compiled files
|
|
2
|
+
*.py[cod]
|
|
3
|
+
*.a
|
|
4
|
+
*.o
|
|
5
|
+
*.so
|
|
6
|
+
__pycache__
|
|
7
|
+
|
|
8
|
+
# Ignore .c files by default to avoid including generated code. If you want to
|
|
9
|
+
# add a non-generated .c extension, use `git add -f filename.c`.
|
|
10
|
+
*.c
|
|
11
|
+
|
|
12
|
+
# Other generated files
|
|
13
|
+
*/cython_version.py
|
|
14
|
+
htmlcov
|
|
15
|
+
.coverage
|
|
16
|
+
MANIFEST
|
|
17
|
+
.ipynb_checkpoints
|
|
18
|
+
example_notebooks/test.png
|
|
19
|
+
*/version.py
|
|
20
|
+
pip-wheel-metadata/
|
|
21
|
+
|
|
22
|
+
# Sphinx
|
|
23
|
+
docs/api
|
|
24
|
+
docs/_build
|
|
25
|
+
|
|
26
|
+
# Eclipse editor project files
|
|
27
|
+
.project
|
|
28
|
+
.pydevproject
|
|
29
|
+
.settings
|
|
30
|
+
|
|
31
|
+
# Pycharm editor project files
|
|
32
|
+
.idea
|
|
33
|
+
|
|
34
|
+
# Packages/installer info
|
|
35
|
+
*.egg*
|
|
36
|
+
*.egg-info
|
|
37
|
+
dist
|
|
38
|
+
build
|
|
39
|
+
eggs
|
|
40
|
+
parts
|
|
41
|
+
bin
|
|
42
|
+
var
|
|
43
|
+
sdist
|
|
44
|
+
develop-eggs
|
|
45
|
+
.installed.cfg
|
|
46
|
+
distribute-*.tar.gz
|
|
47
|
+
|
|
48
|
+
# Other
|
|
49
|
+
.cache
|
|
50
|
+
.tox
|
|
51
|
+
.*.sw[op]
|
|
52
|
+
*~
|
|
53
|
+
|
|
54
|
+
# Mac OSX
|
|
55
|
+
.DS_Store
|
|
56
|
+
# pixi environments
|
|
57
|
+
.pixi/*
|
|
58
|
+
!.pixi/config.toml
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
repos:
|
|
2
|
+
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
3
|
+
rev: v6.0.0
|
|
4
|
+
hooks:
|
|
5
|
+
- id: check-yaml
|
|
6
|
+
- id: end-of-file-fixer
|
|
7
|
+
- id: trailing-whitespace
|
|
8
|
+
- id: check-added-large-files
|
|
9
|
+
|
|
10
|
+
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
11
|
+
# Ruff version.
|
|
12
|
+
rev: v0.16.0
|
|
13
|
+
hooks:
|
|
14
|
+
# Run the linter.
|
|
15
|
+
- id: ruff-check
|
|
16
|
+
args: [--fix]
|
|
17
|
+
# Run the formatter.
|
|
18
|
+
- id: ruff-format
|
|
19
|
+
|
|
20
|
+
ci:
|
|
21
|
+
autofix_prs: false
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Read the Docs configuration file
|
|
2
|
+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
|
3
|
+
version: 2
|
|
4
|
+
|
|
5
|
+
build:
|
|
6
|
+
os: ubuntu-lts-latest
|
|
7
|
+
apt_packages:
|
|
8
|
+
- graphviz
|
|
9
|
+
tools:
|
|
10
|
+
python: "3.13"
|
|
11
|
+
|
|
12
|
+
sphinx:
|
|
13
|
+
builder: html
|
|
14
|
+
configuration: docs/conf.py
|
|
15
|
+
fail_on_warning: true
|
|
16
|
+
|
|
17
|
+
python:
|
|
18
|
+
install:
|
|
19
|
+
- method: pip
|
|
20
|
+
path: .
|
|
21
|
+
extra_requirements:
|
|
22
|
+
- docs
|
|
23
|
+
|
|
24
|
+
# Don't build any extra formats
|
|
25
|
+
formats: []
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
1.0 (unreleased)
|
|
2
|
+
================
|
|
3
|
+
|
|
4
|
+
TBD -- First stable release.
|
|
5
|
+
|
|
6
|
+
New Features
|
|
7
|
+
------------
|
|
8
|
+
|
|
9
|
+
- The cursor-information readout (X/Y, RA/Dec, pixel value) is now shared
|
|
10
|
+
between the ginga and bqplot backends via
|
|
11
|
+
``astrowidgets.cursor_info.CursorInfoMixin``. Both backends have a
|
|
12
|
+
``cursor`` property (``'top'``, ``'bottom'``, or ``None``) and a new
|
|
13
|
+
``sky_coordinate_format`` property that selects decimal degrees (the
|
|
14
|
+
default) or sexagesimal for the RA/Dec display. The ginga readout now
|
|
15
|
+
defaults to decimal degrees; set ``sky_coordinate_format`` to
|
|
16
|
+
``'sexagesimal'`` for the previous display. [#222]
|
|
17
|
+
|
|
18
|
+
Bug Fixes
|
|
19
|
+
---------
|
|
20
|
+
|
|
21
|
+
- Fixed the RA/Dec shown in the bqplot ``ImageWidget`` cursor readout,
|
|
22
|
+
which transposed the x and y pixel coordinates when converting to sky
|
|
23
|
+
coordinates. Also fixed both backends reading pixel 0's value for
|
|
24
|
+
cursor positions slightly outside the image on the negative side.
|
|
25
|
+
|
|
26
|
+
- Fixed the bqplot ``ImageWidget`` so that mouse clicks no longer raise
|
|
27
|
+
``AttributeError`` and no longer block user-registered ``on_msg``
|
|
28
|
+
callbacks. The dead click-to-center and interactive-marking code left
|
|
29
|
+
over from before the switch to ``astro-image-display-api`` was removed;
|
|
30
|
+
those features will be rebuilt (see #201). [#206]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Please read the [Astropy Project Code of Conduct](http://www.astropy.org/code_of_conduct.html).
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Copyright (c) 2018-2021, Astropy Developers
|
|
2
|
+
All rights reserved.
|
|
3
|
+
|
|
4
|
+
Redistribution and use in source and binary forms, with or without modification,
|
|
5
|
+
are permitted provided that the following conditions are met:
|
|
6
|
+
|
|
7
|
+
* Redistributions of source code must retain the above copyright notice, this
|
|
8
|
+
list of conditions and the following disclaimer.
|
|
9
|
+
* Redistributions in binary form must reproduce the above copyright notice, this
|
|
10
|
+
list of conditions and the following disclaimer in the documentation and/or
|
|
11
|
+
other materials provided with the distribution.
|
|
12
|
+
* Neither the name of the Astropy Team nor the names of its contributors may be
|
|
13
|
+
used to endorse or promote products derived from this software without
|
|
14
|
+
specific prior written permission.
|
|
15
|
+
|
|
16
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
17
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
18
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
19
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
|
20
|
+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
21
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
22
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
23
|
+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
24
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
25
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
include README.rst
|
|
2
|
+
include CHANGES.rst
|
|
3
|
+
include LICENSE.rst
|
|
4
|
+
|
|
5
|
+
include pyproject.toml
|
|
6
|
+
include setup.cfg
|
|
7
|
+
include astrowidgets/tests/coveragerc
|
|
8
|
+
|
|
9
|
+
recursive-include docs *
|
|
10
|
+
recursive-include licenses *
|
|
11
|
+
recursive-include example_notebooks *
|
|
12
|
+
|
|
13
|
+
prune build
|
|
14
|
+
prune docs/_build
|
|
15
|
+
prune docs/api
|
|
16
|
+
|
|
17
|
+
# Miscellaneous
|
|
18
|
+
|
|
19
|
+
global-exclude *.pyc *.o
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: astrowidgets
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Widgets for the Jupyter notebook and JupyterLab
|
|
5
|
+
Author-email: Astropy Developers <mattwcraig@gmail.com>
|
|
6
|
+
License-Expression: BSD-3-Clause
|
|
7
|
+
Project-URL: Homepage, https://github.com/astropy/astrowidgets
|
|
8
|
+
Project-URL: Repository, https://github.com/astropy/astrowidgets
|
|
9
|
+
Keywords: astronomy,python
|
|
10
|
+
Classifier: Programming Language :: Python
|
|
11
|
+
Requires-Python: >=3.11
|
|
12
|
+
Description-Content-Type: text/x-rst
|
|
13
|
+
License-File: LICENSE.rst
|
|
14
|
+
Requires-Dist: astropy
|
|
15
|
+
Requires-Dist: astro-image-display-api>=0.3.0
|
|
16
|
+
Requires-Dist: ginga>=3.4
|
|
17
|
+
Requires-Dist: pillow
|
|
18
|
+
Requires-Dist: ipywidgets>=8
|
|
19
|
+
Requires-Dist: ipyevents>=0.6.3
|
|
20
|
+
Requires-Dist: jupyterlab>=3
|
|
21
|
+
Requires-Dist: aggdraw
|
|
22
|
+
Requires-Dist: bqplot<0.14,>=0.13
|
|
23
|
+
Requires-Dist: bqplot-gl>=0.1.1
|
|
24
|
+
Requires-Dist: bqplot-image-gl
|
|
25
|
+
Requires-Dist: matplotlib
|
|
26
|
+
Provides-Extra: test
|
|
27
|
+
Requires-Dist: pytest-astropy; extra == "test"
|
|
28
|
+
Requires-Dist: pytest-cov; extra == "test"
|
|
29
|
+
Requires-Dist: pytest-mock; extra == "test"
|
|
30
|
+
Requires-Dist: pre-commit; extra == "test"
|
|
31
|
+
Requires-Dist: ruff; extra == "test"
|
|
32
|
+
Provides-Extra: docs
|
|
33
|
+
Requires-Dist: sphinx-astropy; extra == "docs"
|
|
34
|
+
Dynamic: license-file
|
|
35
|
+
|
|
36
|
+
Widgets for the Jupyter notebook and JupyterLab
|
|
37
|
+
-----------------------------------------------
|
|
38
|
+
|
|
39
|
+
.. image:: http://img.shields.io/badge/powered%20by-AstroPy-orange.svg?style=flat
|
|
40
|
+
:target: http://www.astropy.org
|
|
41
|
+
:alt: Powered by Astropy Badge
|
|
42
|
+
|
|
43
|
+
.. image:: https://github.com/astropy/astrowidgets/workflows/CI/badge.svg
|
|
44
|
+
:target: https://github.com/astropy/astrowidgets/actions
|
|
45
|
+
:alt: CI Status
|
|
46
|
+
|
|
47
|
+
.. image:: https://readthedocs.org/projects/astrowidgets/badge/?version=latest
|
|
48
|
+
:target: https://astrowidgets.readthedocs.io/en/latest/?badge=latest
|
|
49
|
+
:alt: Documentation Status
|
|
50
|
+
|
|
51
|
+
``astrowidgets`` aims to be a set of astronomy widgets for Jupyter Lab or Notebook,
|
|
52
|
+
leveraging the Astropy ecosystem. The ``ImageWidget`` implements the API documented at
|
|
53
|
+
`https://github.com/eteq/nb-astroimage-api <https://github.com/eteq/nb-astroimage-api>`_
|
|
54
|
+
|
|
55
|
+
**Warning**
|
|
56
|
+
|
|
57
|
+
``astrowidgets`` is currently in *very* early development. Nothing is guaranteed to work or do anything in particular
|
|
58
|
+
at this stage.
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
Installation and Documentation
|
|
62
|
+
------------------------------
|
|
63
|
+
|
|
64
|
+
See https://astrowidgets.readthedocs.io/en/latest/ .
|
|
65
|
+
|
|
66
|
+
License
|
|
67
|
+
-------
|
|
68
|
+
|
|
69
|
+
See ``LICENSE.rst``.
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
Contributing
|
|
73
|
+
------------
|
|
74
|
+
|
|
75
|
+
Given the pre-alpha nature of this package, there is no established
|
|
76
|
+
contributing guide. Please contact the maintainers for guidance.
|
|
77
|
+
It is important that you follow our code of conduct; please see
|
|
78
|
+
``CODE_OF_CONDUCT.md``.
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
Changelog
|
|
82
|
+
---------
|
|
83
|
+
|
|
84
|
+
See ``CHANGES.rst``.
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
Widgets for the Jupyter notebook and JupyterLab
|
|
2
|
+
-----------------------------------------------
|
|
3
|
+
|
|
4
|
+
.. image:: http://img.shields.io/badge/powered%20by-AstroPy-orange.svg?style=flat
|
|
5
|
+
:target: http://www.astropy.org
|
|
6
|
+
:alt: Powered by Astropy Badge
|
|
7
|
+
|
|
8
|
+
.. image:: https://github.com/astropy/astrowidgets/workflows/CI/badge.svg
|
|
9
|
+
:target: https://github.com/astropy/astrowidgets/actions
|
|
10
|
+
:alt: CI Status
|
|
11
|
+
|
|
12
|
+
.. image:: https://readthedocs.org/projects/astrowidgets/badge/?version=latest
|
|
13
|
+
:target: https://astrowidgets.readthedocs.io/en/latest/?badge=latest
|
|
14
|
+
:alt: Documentation Status
|
|
15
|
+
|
|
16
|
+
``astrowidgets`` aims to be a set of astronomy widgets for Jupyter Lab or Notebook,
|
|
17
|
+
leveraging the Astropy ecosystem. The ``ImageWidget`` implements the API documented at
|
|
18
|
+
`https://github.com/eteq/nb-astroimage-api <https://github.com/eteq/nb-astroimage-api>`_
|
|
19
|
+
|
|
20
|
+
**Warning**
|
|
21
|
+
|
|
22
|
+
``astrowidgets`` is currently in *very* early development. Nothing is guaranteed to work or do anything in particular
|
|
23
|
+
at this stage.
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
Installation and Documentation
|
|
27
|
+
------------------------------
|
|
28
|
+
|
|
29
|
+
See https://astrowidgets.readthedocs.io/en/latest/ .
|
|
30
|
+
|
|
31
|
+
License
|
|
32
|
+
-------
|
|
33
|
+
|
|
34
|
+
See ``LICENSE.rst``.
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
Contributing
|
|
38
|
+
------------
|
|
39
|
+
|
|
40
|
+
Given the pre-alpha nature of this package, there is no established
|
|
41
|
+
contributing guide. Please contact the maintainers for guidance.
|
|
42
|
+
It is important that you follow our code of conduct; please see
|
|
43
|
+
``CODE_OF_CONDUCT.md``.
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
Changelog
|
|
47
|
+
---------
|
|
48
|
+
|
|
49
|
+
See ``CHANGES.rst``.
|