65 lines
1.4 KiB
TOML
65 lines
1.4 KiB
TOML
[build-system]
|
|
requires = ["poetry_core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
[tool.poetry]
|
|
name = "pyrad3"
|
|
version = "0.1.0"
|
|
license = "MIT OR Apache-2.0"
|
|
readme = "README.md"
|
|
description = "RADIUS tools"
|
|
keywords = ["AAA", "authentication", "authorization", "accounting", "RADIUS"]
|
|
authors = ["Istvan Ruzman <istvan@ruzman.eu>"]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: Apache Software License",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3.7",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"Topic :: System :: Systems Administration :: Authentication/Directory"
|
|
]
|
|
packages = [
|
|
{ include = "src/pyrad3"},
|
|
]
|
|
include = [
|
|
"LICENSE-APACHE",
|
|
"LICENSE-MIT",
|
|
"README.md",
|
|
]
|
|
|
|
|
|
[tool.poetry.urls]
|
|
repository = "https://github.com/pyradius/pyrad3"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.7"
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
black = "^19.3.10b0"
|
|
pytest = "^5.4"
|
|
pytest-black = "^0.3.10"
|
|
pytest-cov = "^2.10"
|
|
pytest-mypy = "^0.6"
|
|
pytest-pylint = "^0.17"
|
|
|
|
|
|
[tool.black]
|
|
line-length = 80
|
|
include = '\.py'
|
|
|
|
|
|
[tool.isort]
|
|
multi_line_output = 3
|
|
include_trailing_comma = true
|
|
use_parentheses = true
|
|
line_length = 88
|
|
combine_as_imports = true
|
|
|
|
|
|
[tool.pylint.messages_control]
|
|
disable = "bad-continuation"
|