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.
Files changed (42) hide show
  1. pyclickimage-2.0.0/.bumpver.toml +9 -0
  2. pyclickimage-2.0.0/.github/workflows/sphinx.yml +40 -0
  3. pyclickimage-2.0.0/.gitignore +26 -0
  4. pyclickimage-2.0.0/.gitlab-ci.yml +12 -0
  5. pyclickimage-2.0.0/COPYING +674 -0
  6. pyclickimage-2.0.0/LICENSE +674 -0
  7. pyclickimage-2.0.0/Makefile +151 -0
  8. pyclickimage-2.0.0/PKG-INFO +689 -0
  9. pyclickimage-2.0.0/README.md +81 -0
  10. pyclickimage-2.0.0/docs/source/api.rst +14 -0
  11. pyclickimage-2.0.0/docs/source/api_doc/click_image_app.rst +8 -0
  12. pyclickimage-2.0.0/docs/source/api_doc/click_manager.rst +7 -0
  13. pyclickimage-2.0.0/docs/source/api_doc/image_viewer.rst +7 -0
  14. pyclickimage-2.0.0/docs/source/api_doc/run.rst +4 -0
  15. pyclickimage-2.0.0/docs/source/conf.py +58 -0
  16. pyclickimage-2.0.0/docs/source/index.rst +73 -0
  17. pyclickimage-2.0.0/docs/source/installation.rst +35 -0
  18. pyclickimage-2.0.0/docs/source/usage.rst +16 -0
  19. pyclickimage-2.0.0/docs/source/usage_doc/extracting_the_clicks.rst +35 -0
  20. pyclickimage-2.0.0/docs/source/usage_doc/running_the_GUI.rst +75 -0
  21. pyclickimage-2.0.0/docs/source/usage_doc/using_the_GUI.rst +69 -0
  22. pyclickimage-2.0.0/examples/clicks.csv +7 -0
  23. pyclickimage-2.0.0/examples/example.png +0 -0
  24. pyclickimage-2.0.0/examples/example.py +11 -0
  25. pyclickimage-2.0.0/pyclickimage/__init__.py +31 -0
  26. pyclickimage-2.0.0/pyclickimage/__main__.py +72 -0
  27. pyclickimage-2.0.0/pyclickimage/__version__.py +19 -0
  28. pyclickimage-2.0.0/pyclickimage/click_image_app.py +886 -0
  29. pyclickimage-2.0.0/pyclickimage/click_manager.py +391 -0
  30. pyclickimage-2.0.0/pyclickimage/image_viewer.py +375 -0
  31. pyclickimage-2.0.0/pyclickimage/resources/__init__.py +0 -0
  32. pyclickimage-2.0.0/pyclickimage/resources/app.png +0 -0
  33. pyclickimage-2.0.0/pyclickimage/run.py +43 -0
  34. pyclickimage-2.0.0/pyclickimage.egg-info/PKG-INFO +689 -0
  35. pyclickimage-2.0.0/pyclickimage.egg-info/SOURCES.txt +40 -0
  36. pyclickimage-2.0.0/pyclickimage.egg-info/dependency_links.txt +1 -0
  37. pyclickimage-2.0.0/pyclickimage.egg-info/entry_points.txt +5 -0
  38. pyclickimage-2.0.0/pyclickimage.egg-info/requires.txt +3 -0
  39. pyclickimage-2.0.0/pyclickimage.egg-info/top_level.txt +1 -0
  40. pyclickimage-2.0.0/pyproject.toml +45 -0
  41. pyclickimage-2.0.0/setup.cfg +4 -0
  42. pyclickimage-2.0.0/tests/__init__.py +0 -0
@@ -0,0 +1,9 @@
1
+ [bumpver]
2
+ current_version = "2.0.0"
3
+ version_pattern = "MAJOR.MINOR.PATCH"
4
+ default_level = "patch"
5
+
6
+ [bumpver.file_patterns]
7
+ "pyclickimage/__version__.py" = [
8
+ '__version__ = "{version}"'
9
+ ]
@@ -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
@@ -0,0 +1,12 @@
1
+ image: python:3.9
2
+
3
+ before_script:
4
+ - pip install -r requirements.txt
5
+ - pip install sphinx pydata-sphinx-theme
6
+
7
+ pages:
8
+ script:
9
+ - sphinx-build -b html docs/source/ public/
10
+ artifacts:
11
+ paths:
12
+ - public/