-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (39 loc) · 1.12 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
42
[tool.poetry]
name = "bareasgi-sspi"
version = "4.2.0"
description = "bareASGI middleware for SSPI"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Environment :: Win32 (MS Windows)",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Security",
"Typing :: Typed"
]
authors = ["Rob Blackbourn <rob.blackbourn@gmail.com>"]
license = "Apache-2.0"
readme = "README.md"
packages = [
{ include = "bareasgi_sspi" }
]
repository = "https://github.com/rob-blackbourn/bareASGI-SSPI"
[tool.poetry.dependencies]
python = "^3.8"
bareasgi = "^4.2"
pyspnego = "^0.6"
[tool.poetry.dev-dependencies]
autopep8 = "^1"
pylint = "^2.9"
mypy = "^0.910"
hypercorn = "^0.14"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"