diff --git a/.github/workflows/test-pytest.yml b/.github/workflows/test-pytest.yml index 4c7aeab7..2993a2bd 100644 --- a/.github/workflows/test-pytest.yml +++ b/.github/workflows/test-pytest.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: true matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: diff --git a/pyproject.toml b/pyproject.toml index d4fdefb6..16c2f39a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,6 +10,25 @@ license = {file = "LICENSE"} requires-python = ">=3.8,<4" dynamic = ["version"] +classifiers = [ # Optional + "Development Status :: 5 - Production/Stable", + + "Intended Audience :: Developers", + "Intended Audience :: Science/Research", + + "License :: OSI Approved :: MIT License", + + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3 :: Only", + + "Topic :: Scientific/Engineering :: Artificial Intelligence" +] + dependencies = [ "numpy", "matplotlib",