-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
40 lines (38 loc) · 1.2 KB
/
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
35
36
37
38
39
40
[build-system]
requires = ["setuptools~=66.1", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "xmlunittest"
version = "1.0.1"
description = "Library using lxml and unittest for unit testing XML."
maintainers = [
{ name="Florian Strzelecki" },
]
authors = [
{ name="Florian Strzelecki" },
]
readme = "README.rst"
license = { text="MIT" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Pytest",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"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",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Unit",
"Topic :: Text Processing :: Markup :: XML",
]
requires-python = ">=3.8"
dependencies = [
"lxml>=4.0",
]
[project.urls]
"Bug Tracker" = "https://github.com/Exirel/python-xmlunittest/issues"
"Source" = "https://github.com/Exirel/python-xmlunittest"