diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 80261e5..9e08f31 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -12,7 +12,7 @@ jobs: fail-fast: false matrix: os: [windows-latest, ubuntu-latest, macos-latest] - python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] + python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14'] env: OS: ${{ matrix.os }} diff --git a/setup.py b/setup.py index 1d89395..54ca76b 100644 --- a/setup.py +++ b/setup.py @@ -44,6 +44,11 @@ def get_version(rel_path): long_description=long_description, long_description_content_type='text/markdown', url='https://github.com/MideTechnology/ebmlite/tree/master', + project_urls={ + "Bug Tracker": "https://github.com/MideTechnology/ebmlite/issues", + "Documentation": "https://docs.endaq.com/projects/ebmlite/en/latest/index.html", + "Source Code": "https://github.com/MideTechnology/ebmlite", + }, license='MIT', classifiers=['Development Status :: 5 - Production/Stable', 'License :: OSI Approved :: MIT License', @@ -53,6 +58,7 @@ def get_version(rel_path): 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', 'Programming Language :: Python :: 3.13', + 'Programming Language :: Python :: 3.14', ], keywords='ebml binary matroska webm', packages=setuptools.find_packages(exclude="tests"),