diff --git a/CHANGELOG.md b/CHANGELOG.md index 956f3ce..7c93938 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Change log +## [v0.0.3](https://github.com/anotherbyte-net/gather-vision/compare/v0.0.2...v0.0.3) + +- improve plugin api, listing, and tests (#11) +- Change dependencies to use pip requirements compatibility format. + ## [v0.0.2](https://github.com/anotherbyte-net/gather-vision/compare/v0.0.1...v0.0.2) - Added WebData base class diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1c10c41..2bf6b40 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -83,7 +83,7 @@ source .venv-test/bin/activate python -m pip install --upgrade pip setuptools wheel python -m pip install --upgrade -r requirements.txt -GATHER_VISION_VERSION='0.0.2' +GATHER_VISION_VERSION='0.0.3' pip install --index-url https://test.pypi.org/simple/ --no-deps gather-vision==$GATHER_VISION_VERSION # or pip install dist/gather_vision-$GATHER_VISION_VERSION-py3-none-any.whl diff --git a/VERSION b/VERSION index 4e379d2..bcab45a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.0.2 +0.0.3 diff --git a/pyproject.toml b/pyproject.toml index 5de45df..dd7eda5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,11 +10,20 @@ description = "Obtain, extract, organise, and store information. " readme = "README.md" requires-python = ">=3.7" classifiers = [ - "Programming Language :: Python :: 3", + "Development Status :: 3 - Alpha", "License :: OSI Approved :: Apache Software License", "Operating System :: POSIX :: Linux", "Operating System :: Microsoft :: Windows", - "Development Status :: 3 - Alpha", + "Environment :: Console", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Scientific/Engineering :: Information Analysis", "Topic :: Utilities", ] diff --git a/tests/test_cli.py b/tests/test_cli.py index 6fd5a2f..b3e7028 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -7,7 +7,7 @@ from gather_vision.cli import main from helpers import ExamplePlugin -expected_version = "0.0.2" +expected_version = "0.0.3" if sys.version_info.minor >= 10: help_phrase_options = "options:"