-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (28 loc) · 953 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
[build-system]
requires = [
"setuptools>=61.0"
]
build-backend = "setuptools.build_meta"
[project]
name = "micropython-captive-dns-server"
version = "0.0.4.dev"
description = "Micropython asyncio simplistic dns server for use with captive portals"
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: MicroPython",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
authors = [
{ name = "Patrick McAndrew", email="[email protected]" }
]
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.7"
[project.urls]
Homepage = "https://github.com/urg/micropython-captive-dns-server"
Repository = "https://github.com/urg/micropython-captive-dns-server"
[tool.setuptools]
package-dir = {"" = "."}
packages = ["micropython_captive_dns_server"]