mirror of
https://git.freebsd.org/ports.git
synced 2025-05-30 18:06:27 -04:00
Changelog: https://github.com/ArniDagur/python-adblock/releases/tag/0.6.0 PR: 275479 Approved by: submitter is maintainer
39 lines
1,008 B
TOML
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",
|
|
+]
|