clustercron
Advanced tools
| # .readthedocs.yaml | ||
| # Read the Docs configuration file | ||
| # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
| # Required | ||
| version: 2 | ||
| # Build documentation in the docs/ directory with Sphinx | ||
| sphinx: | ||
| configuration: docs/conf.py | ||
| # Optionally build your docs in additional formats such as PDF | ||
| formats: | ||
| # Optionally set the version of Python and requirements required to build your docs | ||
| python: | ||
| version: "3.8" | ||
| install: | ||
| - requirements: docs/requirements.txt |
| # requirements.txt | ||
| clustercron | ||
| Sphinx | ||
| sphinx-rtd-theme |
+1
-1
| [bumpversion] | ||
| current_version = 0.6.5 | ||
| current_version = 0.6.9 | ||
| commit = True | ||
@@ -4,0 +4,0 @@ tag = True |
@@ -23,3 +23,3 @@ # .pre-commit-config.yaml | ||
| - repo: https://github.com/psf/black | ||
| rev: 21.7b0 | ||
| rev: 21.8b0 | ||
| hooks: | ||
@@ -35,1 +35,6 @@ - id: black | ||
| exclude: tlscertmon/certs/migrations/ | ||
| - repo: https://github.com/asottile/setup-cfg-fmt | ||
| rev: v1.17.0 | ||
| hooks: | ||
| - id: setup-cfg-fmt |
+8
-6
| Metadata-Version: 2.1 | ||
| Name: clustercron | ||
| Version: 0.6.5 | ||
| Version: 0.6.9 | ||
| Summary: Cron job wrapper that ensures a script gets run from one node in the cluster. | ||
@@ -8,3 +8,3 @@ Home-page: https://github.com/maartenq/clustercron | ||
| Author-email: ikmaarten@gmail.com | ||
| License: ISC license | ||
| License: ISC | ||
| Project-URL: Bug Tracker, https://github.com/maartenq/clustercron/issues | ||
@@ -14,6 +14,9 @@ Project-URL: Changelog, https://github.com/maartenq/clustercron/blob/master/HISTORY.rst | ||
| Platform: UNKNOWN | ||
| Classifier: Programming Language :: Python :: 3 | ||
| Classifier: Intended Audience :: System Administrators | ||
| Classifier: License :: OSI Approved :: ISC License (ISCL) | ||
| Classifier: License :: OSI Approved :: MIT License | ||
| Classifier: Operating System :: OS Independent | ||
| Classifier: Programming Language :: Python :: 2 | ||
| Classifier: Programming Language :: Python :: 2.7 | ||
| Classifier: Programming Language :: Python :: 3 | ||
| Classifier: Programming Language :: Python :: 3.6 | ||
@@ -24,6 +27,5 @@ Classifier: Programming Language :: Python :: 3.7 | ||
| Classifier: Topic :: System :: Clustering | ||
| Requires-Python: !=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7 | ||
| Requires-Python: !=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7 | ||
| Description-Content-Type: text/x-rst | ||
| License-File: LICENSE.txt | ||
| License-File: AUTHORS.rst | ||
@@ -59,3 +61,3 @@ =========== | ||
| :alt: Documentation Status | ||
| :target: https://docs.readthedocs.io/en/latest/?badge=latest | ||
| :target: https://clustercron.readthedocs.io/en/latest/ | ||
@@ -62,0 +64,0 @@ .. |pre-commit| image:: https://results.pre-commit.ci/badge/github/maartenq/clustercron/master.svg |
+1
-1
@@ -30,3 +30,3 @@ =========== | ||
| :alt: Documentation Status | ||
| :target: https://docs.readthedocs.io/en/latest/?badge=latest | ||
| :target: https://clustercron.readthedocs.io/en/latest/ | ||
@@ -33,0 +33,0 @@ .. |pre-commit| image:: https://results.pre-commit.ci/badge/github/maartenq/clustercron/master.svg |
+20
-16
| [metadata] | ||
| name = clustercron | ||
| version = 0.6.5 | ||
| author = Maarten | ||
| author_email = ikmaarten@gmail.com | ||
| version = 0.6.9 | ||
| description = Cron job wrapper that ensures a script gets run from one node in the cluster. | ||
| long_description = file: README.rst | ||
| long_description_content_type = text/x-rst | ||
| license = ISC license | ||
| url = https://github.com/maartenq/clustercron | ||
| project_urls = | ||
| Bug Tracker = https://github.com/maartenq/clustercron/issues | ||
| Changelog = https://github.com/maartenq/clustercron/blob/master/HISTORY.rst | ||
| keywords = clustercron | ||
| author = Maarten | ||
| author_email = ikmaarten@gmail.com | ||
| license = ISC | ||
| license_file = LICENSE.txt | ||
| classifiers = | ||
| Programming Language :: Python :: 3 | ||
| Intended Audience :: System Administrators | ||
| License :: OSI Approved :: ISC License (ISCL) | ||
| License :: OSI Approved :: MIT License | ||
| Operating System :: OS Independent | ||
| Programming Language :: Python :: 2 | ||
| Programming Language :: Python :: 2.7 | ||
| Programming Language :: Python :: 3 | ||
| Programming Language :: Python :: 3.6 | ||
@@ -25,16 +25,19 @@ Programming Language :: Python :: 3.7 | ||
| Topic :: System :: Clustering | ||
| keywords = clustercron | ||
| project_urls = | ||
| Bug Tracker = https://github.com/maartenq/clustercron/issues | ||
| Changelog = https://github.com/maartenq/clustercron/blob/master/HISTORY.rst | ||
| [options] | ||
| zip_safe = False | ||
| packages = find: | ||
| install_requires = | ||
| boto | ||
| boto3 | ||
| python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.* | ||
| include_package_data = True | ||
| python_requires = >= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, !=3.3.*, !=3.4.*, !=3.4.* | ||
| package_dir = | ||
| = src | ||
| packages = find: | ||
| test_suite = tests | ||
| setup_requires = | ||
| setuptools_scm | ||
| install_requires = | ||
| boto | ||
| boto3 | ||
| test_suite = tests | ||
| tests_require = | ||
@@ -45,2 +48,3 @@ pytest | ||
| tox | ||
| zip_safe = False | ||
@@ -47,0 +51,0 @@ [options.packages.find] |
| Metadata-Version: 2.1 | ||
| Name: clustercron | ||
| Version: 0.6.5 | ||
| Version: 0.6.9 | ||
| Summary: Cron job wrapper that ensures a script gets run from one node in the cluster. | ||
@@ -8,3 +8,3 @@ Home-page: https://github.com/maartenq/clustercron | ||
| Author-email: ikmaarten@gmail.com | ||
| License: ISC license | ||
| License: ISC | ||
| Project-URL: Bug Tracker, https://github.com/maartenq/clustercron/issues | ||
@@ -14,6 +14,9 @@ Project-URL: Changelog, https://github.com/maartenq/clustercron/blob/master/HISTORY.rst | ||
| Platform: UNKNOWN | ||
| Classifier: Programming Language :: Python :: 3 | ||
| Classifier: Intended Audience :: System Administrators | ||
| Classifier: License :: OSI Approved :: ISC License (ISCL) | ||
| Classifier: License :: OSI Approved :: MIT License | ||
| Classifier: Operating System :: OS Independent | ||
| Classifier: Programming Language :: Python :: 2 | ||
| Classifier: Programming Language :: Python :: 2.7 | ||
| Classifier: Programming Language :: Python :: 3 | ||
| Classifier: Programming Language :: Python :: 3.6 | ||
@@ -24,6 +27,5 @@ Classifier: Programming Language :: Python :: 3.7 | ||
| Classifier: Topic :: System :: Clustering | ||
| Requires-Python: !=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7 | ||
| Requires-Python: !=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7 | ||
| Description-Content-Type: text/x-rst | ||
| License-File: LICENSE.txt | ||
| License-File: AUTHORS.rst | ||
@@ -59,3 +61,3 @@ =========== | ||
| :alt: Documentation Status | ||
| :target: https://docs.readthedocs.io/en/latest/?badge=latest | ||
| :target: https://clustercron.readthedocs.io/en/latest/ | ||
@@ -62,0 +64,0 @@ .. |pre-commit| image:: https://results.pre-commit.ci/badge/github/maartenq/clustercron/master.svg |
@@ -6,2 +6,3 @@ .bumpversion.cfg | ||
| .pre-commit-config.yaml | ||
| .readthedocs.yaml | ||
| AUTHORS.rst | ||
@@ -34,2 +35,3 @@ CONTRIBUTING.rst | ||
| docs/readme.rst | ||
| docs/requirements.txt | ||
| docs/usage.rst | ||
@@ -36,0 +38,0 @@ docs/_static/.gitignore |
@@ -6,2 +6,2 @@ # -*- coding: utf-8 -*- | ||
| __email__ = 'ikmaarten@gmail.com' | ||
| __version__ = '0.6.5' | ||
| __version__ = '0.6.9' |
+1
-0
@@ -17,2 +17,3 @@ ; tox.ini | ||
| [testenv:docs] | ||
| basepython = python3.9 | ||
| changedir = docs/ | ||
@@ -19,0 +20,0 @@ deps = |
Alert delta unavailable
Currently unable to show alert delta for PyPI packages.
72278
1.55%53
3.92%