-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
30 lines (28 loc) · 982 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyxml3"
version = "0.0.5"
requires-python = ">=3.8"
dependencies = []
authors = [
{name = "Andrew C Scott", email = "[email protected]"},
]
description = "Pure python3 alternative to stdlib xml.etree with HTML support"
readme = {file = "README.md", content-type = "text/markdown"}
license = { file = 'LICENSE' }
keywords = ["xml", "html", "parser", "encoder", "pure", "python3"]
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
Repository = "https://github.com/imgurbot12/pyxml"