hh-applicant-tool 0.3.0__tar.gz → 0.3.1__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.

Potentially problematic release.


This version of hh-applicant-tool might be problematic. Click here for more details.

Files changed (22) hide show
  1. {hh_applicant_tool-0.3.0 → hh_applicant_tool-0.3.1}/PKG-INFO +4 -1
  2. {hh_applicant_tool-0.3.0 → hh_applicant_tool-0.3.1}/pyproject.toml +5 -4
  3. {hh_applicant_tool-0.3.0 → hh_applicant_tool-0.3.1}/README.md +0 -0
  4. {hh_applicant_tool-0.3.0 → hh_applicant_tool-0.3.1}/hh_applicant_tool/__init__.py +0 -0
  5. {hh_applicant_tool-0.3.0 → hh_applicant_tool-0.3.1}/hh_applicant_tool/__main__.py +0 -0
  6. {hh_applicant_tool-0.3.0 → hh_applicant_tool-0.3.1}/hh_applicant_tool/api/__init__.py +0 -0
  7. {hh_applicant_tool-0.3.0 → hh_applicant_tool-0.3.1}/hh_applicant_tool/api/client.py +0 -0
  8. {hh_applicant_tool-0.3.0 → hh_applicant_tool-0.3.1}/hh_applicant_tool/api/errors.py +0 -0
  9. {hh_applicant_tool-0.3.0 → hh_applicant_tool-0.3.1}/hh_applicant_tool/color_log.py +0 -0
  10. {hh_applicant_tool-0.3.0 → hh_applicant_tool-0.3.1}/hh_applicant_tool/constants.py +0 -0
  11. {hh_applicant_tool-0.3.0 → hh_applicant_tool-0.3.1}/hh_applicant_tool/main.py +0 -0
  12. {hh_applicant_tool-0.3.0 → hh_applicant_tool-0.3.1}/hh_applicant_tool/operations/__init__.py +0 -0
  13. {hh_applicant_tool-0.3.0 → hh_applicant_tool-0.3.1}/hh_applicant_tool/operations/apply_similar.py +0 -0
  14. {hh_applicant_tool-0.3.0 → hh_applicant_tool-0.3.1}/hh_applicant_tool/operations/authorize.py +0 -0
  15. {hh_applicant_tool-0.3.0 → hh_applicant_tool-0.3.1}/hh_applicant_tool/operations/call_api.py +0 -0
  16. {hh_applicant_tool-0.3.0 → hh_applicant_tool-0.3.1}/hh_applicant_tool/operations/clear_negotiations.py +0 -0
  17. {hh_applicant_tool-0.3.0 → hh_applicant_tool-0.3.1}/hh_applicant_tool/operations/list_resumes.py +0 -0
  18. {hh_applicant_tool-0.3.0 → hh_applicant_tool-0.3.1}/hh_applicant_tool/operations/refresh_token.py +0 -0
  19. {hh_applicant_tool-0.3.0 → hh_applicant_tool-0.3.1}/hh_applicant_tool/operations/update_resumes.py +0 -0
  20. {hh_applicant_tool-0.3.0 → hh_applicant_tool-0.3.1}/hh_applicant_tool/operations/whoami.py +0 -0
  21. {hh_applicant_tool-0.3.0 → hh_applicant_tool-0.3.1}/hh_applicant_tool/types.py +0 -0
  22. {hh_applicant_tool-0.3.0 → hh_applicant_tool-0.3.1}/hh_applicant_tool/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: hh-applicant-tool
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Summary:
5
5
  Author: Senior YAML Developer
6
6
  Author-email: yamldeveloper@proton.me
@@ -10,7 +10,10 @@ Classifier: Programming Language :: Python :: 3.10
10
10
  Classifier: Programming Language :: Python :: 3.11
11
11
  Classifier: Programming Language :: Python :: 3.12
12
12
  Classifier: Programming Language :: Python :: 3.13
13
+ Provides-Extra: qt
13
14
  Requires-Dist: prettytable (>=3.6.0,<4.0.0)
15
+ Requires-Dist: pyqt6 (>=6.7.1,<7.0.0) ; extra == "qt"
16
+ Requires-Dist: pyqt6-webengine (>=6.7.0,<7.0.0) ; extra == "qt"
14
17
  Requires-Dist: requests (>=2.28.2,<3.0.0)
15
18
  Description-Content-Type: text/markdown
16
19
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "hh-applicant-tool"
3
- version = "0.3.0"
3
+ version = "0.3.1"
4
4
  description = ""
5
5
  authors = ["Senior YAML Developer <yamldeveloper@proton.me>"]
6
6
  readme = "README.md"
@@ -10,10 +10,11 @@ packages = [{include = "hh_applicant_tool"}]
10
10
  python = "^3.10"
11
11
  requests = "^2.28.2"
12
12
  prettytable = "^3.6.0"
13
+ pyqt6 = { version = "^6.7.1", optional = true }
14
+ pyqt6-webengine = { version = "^6.7.0", optional = true }
13
15
 
14
- [tool.poetry.group.qt.dependencies]
15
- pyqt6 = "^6.7.1"
16
- pyqt6-webengine = "^6.7.0"
16
+ [tool.poetry.extras]
17
+ qt = ["pyqt6", "pyqt6-webengine"]
17
18
 
18
19
  [tool.poetry.group.dev.dependencies]
19
20
  black = "^23.1.0"