77 lines
1.9 KiB
TOML
77 lines
1.9 KiB
TOML
[build-system]
|
|
requires = ["poetry>=1.0"]
|
|
build-backend = "poetry.masonry.api"
|
|
|
|
|
|
[tool.poetry]
|
|
name = "pyrad3"
|
|
version = "0.1.0"
|
|
readme = "README.rst"
|
|
description = "RADIUS tools"
|
|
keywords = ["AAA", "authentication", "authorization", "accounting", "RADIUS"]
|
|
authors = ["Istvan Ruzman <istvan@ruzman.eu>"]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"Intended Audience :: Information Technology",
|
|
"Intended Audience :: System Administrators",
|
|
"Intended Audience :: Telecommunications Industry",
|
|
"License :: OSI Approved :: Apache Software License",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3.7",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
"Topic :: Software Development :: Libraries",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"Topic :: System :: Networking",
|
|
"Topic :: System :: Systems Administration :: Authentication/Directory",
|
|
]
|
|
include = [
|
|
"LICENSE-APACHE",
|
|
"LICENSE-MIT",
|
|
]
|
|
|
|
|
|
[tool.poetry.urls]
|
|
repository = "https://github.com/pyradius/pyrad3"
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.7"
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
black = { version = "*", allow-prereleases = true }
|
|
bandit = "^1.6"
|
|
pep8-naming = "^0.11"
|
|
pytest = "^6"
|
|
pytest-black = "^0.3.10"
|
|
pytest-cov = "^2.10.1"
|
|
pytest-flake8 = "^1.0"
|
|
pytest-isort = "^1.1.0"
|
|
pytest-mypy = "^0.7"
|
|
pytest-pylint = "^0.17"
|
|
|
|
|
|
[tool.black]
|
|
line-length = 90
|
|
include = '\.py'
|
|
target-version = ["py37", "py38", "py39"]
|
|
|
|
|
|
[tool.isort]
|
|
combine_as_imports = true
|
|
include_trailing_comma = true
|
|
line_length = 90
|
|
multi_line_output = 3
|
|
use_parentheses = true
|
|
|
|
[tool.pylint.master]
|
|
ignore = "tests,examples"
|
|
|
|
[tool.pylint.messages_control]
|
|
# black is taking care of this
|
|
disable = "bad-continuation,fixme"
|