-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (46 loc) · 1.85 KB
/
pyproject.toml
File metadata and controls
50 lines (46 loc) · 1.85 KB
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
41
42
43
44
45
46
47
48
49
50
# General.
[tool.poetry]
name = "robotframework-xmlvalidator"
version = "2.1.0"
description = "A Robot Framework test library for validating XML files against XSD schemas"
authors = ["Michael Hallik <hallik.michael@gmail.com>"]
license = "Apache-2.0"
readme = "README.md"
packages = [{ include = "xmlvalidator", from = "src" }]
keywords = ["robotframework", "xml", "xsd", "validation", "test-library", "test", "testing", "test-automation"]
homepage = "https://github.com/MichaelHallik/robotframework-xmlvalidator"
repository = "https://github.com/MichaelHallik/robotframework-xmlvalidator"
documentation = "https://github.com/MichaelHallik/robotframework-xmlvalidator#readme"
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: Apache Software License",
"Framework :: Robot Framework",
"Topic :: Software Development :: Testing",
]
# Package installation dependencies.
[tool.poetry.dependencies]
python = ">=3.10"
lxml = "^5.1.0"
pandas = "^2.2.0"
robotframework = "^7.0.0"
xmlschema = "^3.4.3"
# Development dependencies (not installed during normal package installation).
[tool.poetry.group.dev.dependencies]
black = "^25.1.0"
pylint = "^3.1.0"
pyright = "^1.1.357"
pytest = "^8.3.1" # Needed for unit testing.
pytest-mock = "^3.12.0" # Needed for mocking in tests.
pytest-cov = "^4.1.0"
# Define the build-system to build the package.
[build-system]
requires = ["poetry-core"] # Poetry uses poetry-core instead of setuptools.
build-backend = "poetry.core.masonry.api" # The Poetry module which handles package building and dependency resolution.
# Configure pytest (replace pytest.ini).
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra --strict-markers"
testpaths = ["test/unit"]