-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 1.05 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "geos-xml-tools"
version = "0.6.0"
description = "Tools for enabling advanced xml features in GEOSX"
maintainers = [
{name = "Christopher Sherman", email = "sherman27@llnl.gov" }
]
license = {text = "LGPL-2.1"}
requires-python = ">=3.8"
dependencies = [
"lxml>=4.5.0",
"parameterized",
"numpy>=1.16.2",
"typing_extensions>=4.12"
]
[project.scripts]
preprocess_xml = "geos.xml_tools.main:preprocess_serial"
format_xml = "geos.xml_tools.xml_formatter:main"
test_geosx_xml_tools = "geos.xml_tools.tests.test_manager:main"
check_xml_attribute_coverage = "geos.xml_tools.attribute_coverage:main"
check_xml_redundancy = "geos.xml_tools.xml_redundancy_check:main"
[tool.pytest.ini_options]
addopts = "--import-mode=importlib"
console_output_style = "count"
pythonpath = [".", "src"]
python_classes = "Test"
python_files = "test*.py"
python_functions = "test*"
testpaths = ["tests"]
norecursedirs = "bin"
filterwarnings = []