-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
39 lines (33 loc) · 1.1 KB
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "https-login"
version = "1.3.0"
description = "Tiny HTTPS file server (like python -m http.server) with a simple login page and temp self-signed cert."
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
authors = [{ name = "Benjamin Kasser", email = "benjaminkasser@gmail.com" }]
keywords = ["https", "httpserver", "fileserver", "login", "python"]
dependencies = [
"cryptography>=41"
]
[project.urls]
Homepage = "https://github.com/Nero2201/https-login"
Issues = "https://github.com/Nero2201/https-login/issues"
[project.scripts]
https-login = "https_login.server:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.semantic_release]
branch = "main"
tag_format = "v{version}"
commit_message = "chore(release): {version} [skip ci]"
version_toml = ["pyproject.toml:project.version"]
version_variables = ["src/https_login/__init__.py:__version__"]
build_command = "python -m build"
upload_to_pypi = false
upload_to_release = true