blob: 5655122adb841211e4935f1a982ec6e1e8d04db4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
[project]
name = "adblock"
version = "0.0.0"
description = "Brave's adblocking in Python"
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"
[tool.poetry.dev-dependencies]
maturin = "*"
pytest = "*"
toml = "*"
[build-system]
requires = ["maturin>=0.12,<0.13"]
build-backend = "maturin"
|