forked from tianhuil/SimpleHTTPAuthServer
-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
37 lines (32 loc) · 995 Bytes
/
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
[tool.poetry]
name = "sauth"
version = "1.1.0"
description = "simple server for serving directories via http or https and BASIC authorization"
authors = ["granitosaurus <[email protected]>"]
readme = "README.rst"
homepage = "https://github.com/Granitosaurus/sauth/"
repository = "https://github.com/Granitosaurus/sauth/"
license = "GPL-3.0-or-later"
keywords = [
"http","server","authentication",
]
classifiers = [
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.6",
]
[tool.poetry.dependencies]
python = "^3.6"
click = "^8.0.3"
[tool.poetry.dev-dependencies]
[tool.poetry.scripts]
sauth = 'sauth:main'
[tool.black]
line-length = 120
target-version = ['py36', 'py37', 'py38', 'py39']
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"