-
Notifications
You must be signed in to change notification settings - Fork 187
/
pyproject.toml
41 lines (37 loc) · 1.15 KB
/
pyproject.toml
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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pyrad"
version= "2.4"
readme = "README.rst"
license = "BSD-3-Clause"
description="RADIUS tools"
authors = [
"Istvan Ruzman <[email protected]>",
"Christian Giese <[email protected]>",
]
keywords = ["AAA", "accounting", "authentication", "authorization", "RADIUS"]
classifiers = [
"Development Status :: 6 - Mature",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration :: Authentication/Directory",
]
include = [
"example/*"
]
[tool.poetry.urls]
repository = "https://github.com/pyradius/pyrad"
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.dev-dependencies]
nose = "^0.10.0b1"