-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
34 lines (31 loc) · 1000 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "beautify-http-server"
version = "0.0.1"
authors = [
{ name="Lorenzo Di Fuccia", email="[email protected]" },
]
description = "(Beautiful) replacement for the 'http.server' Python3 module. Allows file upload, preview and much more."
license = { text = "Apache-2.0" }
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
"Programming Language :: Python :: 3",
"Framework :: Flask",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License"
]
dependencies = [
"Flask>=2.2.2",
"humanize>=4.4.0",
"waitress>=2.1.2"
]
[project.urls]
"Homepage" = "https://github.com/lorenzodifuccia/http.server"
"Bug Tracker" = "https://github.com/lorenzodifuccia/http.server/issues"
[project.scripts]
"http.server" = "http_server.server:main"