ports/www/py-adblock/files/patch-pyproject.toml
Adam Jimerson 9bc4543e96 www/py-adblock: Update version 0.5.0=>0.6.0
Changelog: https://github.com/ArniDagur/python-adblock/releases/tag/0.6.0

PR:		275479
Approved by:	submitter is maintainer
2023-12-08 08:25:21 +01:00

39 lines
1,008 B
TOML

--- pyproject.toml.orig 2023-11-30 00:16:23 UTC
+++ pyproject.toml
@@ -1,11 +1,21 @@
-[tool.poetry]
+[project]
name = "adblock"
version = "0.0.0"
description = "Brave's adblocking in Python"
-authors = ["Árni Dagur <arni@dagur.eu>"]
+requires-python = ">=3.7"
+authors = [
+ {email = "arni@dagur.eu"},
+ {name = "Árni Dagur"}
+]
+classifiers = [
+ "Programming Language :: Python",
+ "Programming Language :: Rust",
+ "License :: OSI Approved :: MIT License",
+ "License :: OSI Approved :: Apache Software License",
+]
[tool.poetry.dependencies]
-python = "^3.6"
+python = "^3.7"
[tool.poetry.dev-dependencies]
maturin = "*"
@@ -15,3 +25,11 @@ build-backend = "maturin"
[build-system]
requires = ["maturin>=0.12,<0.13"]
build-backend = "maturin"
+
+[package.metadata.maturin]
+classifier = [
+ "Programming Language :: Python",
+ "Programming Language :: Rust",
+ "License :: OSI Approved :: MIT License",
+ "License :: OSI Approved :: Apache Software License",
+]