pyclickimage 2.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.
- pyclickimage-2.0.0/.bumpver.toml +9 -0
- pyclickimage-2.0.0/.github/workflows/sphinx.yml +40 -0
- pyclickimage-2.0.0/.gitignore +26 -0
- pyclickimage-2.0.0/.gitlab-ci.yml +12 -0
- pyclickimage-2.0.0/COPYING +674 -0
- pyclickimage-2.0.0/LICENSE +674 -0
- pyclickimage-2.0.0/Makefile +151 -0
- pyclickimage-2.0.0/PKG-INFO +689 -0
- pyclickimage-2.0.0/README.md +81 -0
- pyclickimage-2.0.0/docs/source/api.rst +14 -0
- pyclickimage-2.0.0/docs/source/api_doc/click_image_app.rst +8 -0
- pyclickimage-2.0.0/docs/source/api_doc/click_manager.rst +7 -0
- pyclickimage-2.0.0/docs/source/api_doc/image_viewer.rst +7 -0
- pyclickimage-2.0.0/docs/source/api_doc/run.rst +4 -0
- pyclickimage-2.0.0/docs/source/conf.py +58 -0
- pyclickimage-2.0.0/docs/source/index.rst +73 -0
- pyclickimage-2.0.0/docs/source/installation.rst +35 -0
- pyclickimage-2.0.0/docs/source/usage.rst +16 -0
- pyclickimage-2.0.0/docs/source/usage_doc/extracting_the_clicks.rst +35 -0
- pyclickimage-2.0.0/docs/source/usage_doc/running_the_GUI.rst +75 -0
- pyclickimage-2.0.0/docs/source/usage_doc/using_the_GUI.rst +69 -0
- pyclickimage-2.0.0/examples/clicks.csv +7 -0
- pyclickimage-2.0.0/examples/example.png +0 -0
- pyclickimage-2.0.0/examples/example.py +11 -0
- pyclickimage-2.0.0/pyclickimage/__init__.py +31 -0
- pyclickimage-2.0.0/pyclickimage/__main__.py +72 -0
- pyclickimage-2.0.0/pyclickimage/__version__.py +19 -0
- pyclickimage-2.0.0/pyclickimage/click_image_app.py +886 -0
- pyclickimage-2.0.0/pyclickimage/click_manager.py +391 -0
- pyclickimage-2.0.0/pyclickimage/image_viewer.py +375 -0
- pyclickimage-2.0.0/pyclickimage/resources/__init__.py +0 -0
- pyclickimage-2.0.0/pyclickimage/resources/app.png +0 -0
- pyclickimage-2.0.0/pyclickimage/run.py +43 -0
- pyclickimage-2.0.0/pyclickimage.egg-info/PKG-INFO +689 -0
- pyclickimage-2.0.0/pyclickimage.egg-info/SOURCES.txt +40 -0
- pyclickimage-2.0.0/pyclickimage.egg-info/dependency_links.txt +1 -0
- pyclickimage-2.0.0/pyclickimage.egg-info/entry_points.txt +5 -0
- pyclickimage-2.0.0/pyclickimage.egg-info/requires.txt +3 -0
- pyclickimage-2.0.0/pyclickimage.egg-info/top_level.txt +1 -0
- pyclickimage-2.0.0/pyproject.toml +45 -0
- pyclickimage-2.0.0/setup.cfg +4 -0
- pyclickimage-2.0.0/tests/__init__.py +0 -0
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
name: Deploy Documentation to GitHub Pages
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- master
|
|
7
|
+
|
|
8
|
+
permissions:
|
|
9
|
+
contents: write
|
|
10
|
+
pages: write
|
|
11
|
+
id-token: write
|
|
12
|
+
|
|
13
|
+
jobs:
|
|
14
|
+
deploy:
|
|
15
|
+
runs-on: ubuntu-latest
|
|
16
|
+
|
|
17
|
+
steps:
|
|
18
|
+
- name: Checkout the repository
|
|
19
|
+
uses: actions/checkout@v4
|
|
20
|
+
|
|
21
|
+
- name: Set up Python
|
|
22
|
+
uses: actions/setup-python@v4
|
|
23
|
+
with:
|
|
24
|
+
python-version: "3.9"
|
|
25
|
+
|
|
26
|
+
- name: Install dependencies
|
|
27
|
+
run: |
|
|
28
|
+
pip install .
|
|
29
|
+
pip install sphinx pydata-sphinx-theme
|
|
30
|
+
|
|
31
|
+
- name: Build documentation
|
|
32
|
+
run: sphinx-build -b html docs/source/ public/
|
|
33
|
+
|
|
34
|
+
- name: Deploy to GitHub Pages
|
|
35
|
+
uses: JamesIves/github-pages-deploy-action@v4
|
|
36
|
+
|
|
37
|
+
with:
|
|
38
|
+
branch: gh-pages
|
|
39
|
+
folder: public
|
|
40
|
+
clean: true
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Python cache files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*.pyo
|
|
5
|
+
*.pyd
|
|
6
|
+
|
|
7
|
+
# Virtual environment
|
|
8
|
+
env/
|
|
9
|
+
venv/
|
|
10
|
+
*_pyvenv.cfg
|
|
11
|
+
*.egg-info/
|
|
12
|
+
|
|
13
|
+
# Laboratory
|
|
14
|
+
laboratory/
|
|
15
|
+
|
|
16
|
+
# Sphinx documentation
|
|
17
|
+
build/
|
|
18
|
+
|
|
19
|
+
# Jupyter Notebook checkpoints
|
|
20
|
+
.ipynb_checkpoints/
|
|
21
|
+
|
|
22
|
+
# IDE files
|
|
23
|
+
.idea/
|
|
24
|
+
.vscode/
|
|
25
|
+
*.sublime-project
|
|
26
|
+
*.sublime-workspace
|