|
|
[tool.poetry]
|
|
|
name = "sysaudit"
|
|
|
version = "0.1.0"
|
|
|
description = "Backport module for sys.audit and sys.addaudithook from Python 3.8"
|
|
|
authors = ["brettlangdon <me@brett.is>"]
|
|
|
license = "MIT"
|
|
|
build = "build.py"
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
python = "~2.7 || ^3.5"
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
Cython = "^0.29.21"
|
|
|
black = {version = "^20.8b1", python = "^3.6"}
|
|
|
mypy = {version = "^0.800", python = "^3.6"}
|
|
|
|
|
|
[build-system]
|
|
|
requires = ["poetry-core>=1.0.0", "Cython", "setuptools"]
|
|
|
build-backend = "poetry.core.masonry.api"
|