-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
38 lines (34 loc) · 1.03 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "xml2db"
version = "0.12.3"
authors = [
{ name="Commission de régulation de l'énergie", email="[email protected]" },
]
description = "Import complex XML files to a relational database"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"sqlalchemy>1.4",
"xmlschema==3.3.2",
"lxml==5.1.0",
]
[project.optional-dependencies]
docs = ["mkdocs-material==9.5.34", "mkdocstrings-python==1.11.1"]
tests = ["pytest>=7.0"]
[project.urls]
"Documentation" = "https://cre-dev.github.io/xml2db"
"Repository" = "https://github.com/cre-dev/xml2db"
"Issues page" = "https://github.com/cre-dev/xml2db/issues"
[tool.pytest.ini_options]
markers = [
"dbtest: marks tests as integration tests requiring a database backend (deselect with '-m \"not dbtest\"')",
]
junit_family = "xunit2"