summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
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"