summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorRobert Schütz <mail@dotlambda.de>2023-02-27 23:21:40 -0800
committerÁrni Dagur <arni@dagur.eu>2023-03-28 15:40:39 +0200
commit7597cd0b841a0ede22ff4cec6b4b91fb7d26a805 (patch)
treeaff2dc68f269a77fad5c418d73262411eb6c7efa /pyproject.toml
parente8c923f69388dcff2c7805bec2269db2cc61d0c4 (diff)
PEP 621 compatibility
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml14
1 files changed, 12 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml
index c3656a4..5655122 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,8 +1,18 @@
1[tool.poetry] 1[project]
2name = "adblock" 2name = "adblock"
3version = "0.0.0" 3version = "0.0.0"
4description = "Brave's adblocking in Python" 4description = "Brave's adblocking in Python"
5authors = ["Árni Dagur <arni@dagur.eu>"] 5requires-python = ">=3.7"
6authors = [
7 {email = "arni@dagur.eu"},
8 {name = "Árni Dagur"}
9]
10classifiers = [
11 "Programming Language :: Python",
12 "Programming Language :: Rust",
13 "License :: OSI Approved :: MIT License",
14 "License :: OSI Approved :: Apache Software License",
15]
6 16
7[tool.poetry.dependencies] 17[tool.poetry.dependencies]
8python = "^3.6" 18python = "^3.6"