summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorÁrni Dagur <arni@dagur.eu>2021-02-01 17:59:51 +0000
committerGitHub <noreply@github.com>2021-02-01 17:59:51 +0000
commitdc33223fcb1583bf31b89474ec299d45d8f80ef0 (patch)
treef3c0e12505f3191c20e959fe3e81da445a28c59f /pyproject.toml
parentd0dbf823b7ce627ee77067cd87188fa9995ad783 (diff)
Packaging improvements (#34)
* Use maturin for PEP 517 compliancy * Removing relative import in __init__.py * Bump version to 0.4.2
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml13
1 files changed, 6 insertions, 7 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 432e476..8bbdb76 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,18 +1,17 @@
1[tool.poetry] 1[tool.poetry]
2name = "adblock" 2name = "adblock"
3version = "0.4.1" 3version = "0.0.0"
4description = "Brave's adblocking in Python" 4description = "Brave's adblocking in Python"
5authors = ["Árni Dagur <arni@dagur.eu>"] 5authors = ["Árni Dagur <arni@dagur.eu>"]
6license = "MIT OR Apache-2.0"
7readme = "README.md"
8repository = "https://github.com/ArniDagur/python-adblock"
9keywords = []
10 6
11[tool.poetry.dependencies] 7[tool.poetry.dependencies]
12python = "^3.5" 8python = "^3.6"
13 9
14[tool.poetry.dev-dependencies] 10[tool.poetry.dev-dependencies]
15maturin = "*" 11maturin = "*"
16pytest = "*" 12pytest = "*"
17toml = "*" 13toml = "*"
18changelog-cli = "*" \ No newline at end of file 14
15[build-system]
16requires = ["maturin"]
17build-backend = "maturin" \ No newline at end of file