diff --git a/.github/workflows/publish_package.yaml b/.github/workflows/publish_package.yaml index bef9699..db2b108 100644 --- a/.github/workflows/publish_package.yaml +++ b/.github/workflows/publish_package.yaml @@ -12,7 +12,9 @@ jobs: - uses: actions/checkout@v2 - name: Install Twine - run: pip install twine + run: | + pip install twine==6.1.0 + pip install packaging==24.2 - name: Build Distributions run: | diff --git a/pyproject.toml b/pyproject.toml index c9befed..1eec2b0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,9 +11,9 @@ dynamic = ["dependencies", "version"] readme = "README.md" requires-python = ">=3.9, <4" authors = [{ name = "Ethyca, Inc.", email = "fidesteam@ethyca.com" }] -license = { text = "Apache License 2.0" } +license = "Apache-2.0" +license-files = ["LICENSE"] classifiers = [ - "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10",