-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
29 lines (27 loc) · 1013 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "BLM16-MicroServer"
version = "1.0.0"
description = "A lightweight and flexible webserver."
keywords = ["microserver", "webserver", "lightweight"]
authors = [{ name = "BLM16", email = "myers.bradley@hotmail.com" }]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3"
classifiers = [
"License :: OSI Approved :: MIT License",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Server",
"Programming Language :: Python :: 3"
]
[project.urls]
Repository = "https://github.com/BLM16/MicroServer.git"
Issues = "https://github.com/BLM16/MicroServer/issues"
Changelog = "https://github.com/BLM16/MicroServer/blob/master/CHANGELOG.md"