summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorÁrni Dagur <arni@dagur.eu>2023-03-03 00:20:10 +0100
committerÁrni Dagur <arni@dagur.eu>2023-03-28 15:40:39 +0200
commit873ff13bb0659a56cfec2e07b464a5f1bf8e722f (patch)
tree3fefaf77a581e95d340b45d9c9e57e7bb4d44d49 /pyproject.toml
parentacd6f12d9e370e00de1ee6125c70a09cdcfae0ec (diff)
Duplicate package information for Poetry
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml15
1 files changed, 9 insertions, 6 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 5655122..564e100 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,12 +1,9 @@
1[project] 1[project]
2name = "adblock" 2name = "adblock"
3version = "0.0.0" 3version = "0.6.0"
4description = "Brave's adblocking in Python" 4description = "Brave's adblocking in Python"
5requires-python = ">=3.7" 5requires-python = ">=3.7"
6authors = [ 6authors = [{ name = "Árni Dagur", email = "arni@dagur.eu" }]
7 {email = "arni@dagur.eu"},
8 {name = "Árni Dagur"}
9]
10classifiers = [ 7classifiers = [
11 "Programming Language :: Python", 8 "Programming Language :: Python",
12 "Programming Language :: Rust", 9 "Programming Language :: Rust",
@@ -14,6 +11,12 @@ classifiers = [
14 "License :: OSI Approved :: Apache Software License", 11 "License :: OSI Approved :: Apache Software License",
15] 12]
16 13
14[tool.poetry]
15name = "adblock"
16version = "0.6.0"
17description = "Brave's adblocking in Python"
18authors = ["Árni Dagur <arni@dagur.eu>"]
19
17[tool.poetry.dependencies] 20[tool.poetry.dependencies]
18python = "^3.6" 21python = "^3.6"
19 22
@@ -23,5 +26,5 @@ pytest = "*"
23toml = "*" 26toml = "*"
24 27
25[build-system] 28[build-system]
26requires = ["maturin>=0.12,<0.13"] 29requires = ["maturin>=0.12"]
27build-backend = "maturin" 30build-backend = "maturin"