python-adblock

Updated Brave adblock library for Python
Log | Files | Refs | README

pyproject.toml (696B)


      1 [project]
      2 name = "adblock"
      3 version = "0.7.0"
      4 description = "Brave's adblocking in Python"
      5 requires-python = ">=3.7"
      6 authors = [{ name = "Árni Dagur", email = "arni@dagur.eu" }]
      7 classifiers = [
      8     "Programming Language :: Python",
      9     "Programming Language :: Rust",
     10     "License :: OSI Approved :: MIT License",
     11     "License :: OSI Approved :: Apache Software License",
     12 ]
     13 
     14 [tool.poetry]
     15 name = "adblock"
     16 version = "0.7.0"
     17 description = "Brave's adblocking in Python"
     18 authors = ["Árni Dagur <arni@dagur.eu>"]
     19 
     20 [tool.poetry.dependencies]
     21 python = "^3.6"
     22 
     23 [tool.poetry.dev-dependencies]
     24 maturin = "*"
     25 pytest = "*"
     26 toml = "*"
     27 
     28 [build-system]
     29 requires = ["maturin>=0.12"]
     30 build-backend = "maturin"