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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
[project]
name = "aioapcaccess"
requires-python = ">=3.8"
description = "Async version of apcaccess library implemented in python."
dynamic = ["version"]
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Yuxin Wang", email = "yuxinwang.dev@gmail.com" }
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = []
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"pytest-cov",
"pytest-asyncio>=0.17",
]
[build-system]
requires = ["setuptools >= 61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
minversion = "6.0"
asyncio_mode = "auto"
[tool.bandit]
exclude_dirs = ["tests"]
[tool.ruff]
line-length = 99
target-version = "py38"
extend-select = ["I"]
|