-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (65 loc) · 1.84 KB
/
pyproject.toml
File metadata and controls
73 lines (65 loc) · 1.84 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61.0", "wheel>=0.37.1"]
[project]
name = "geos-ats"
version = "0.2.0"
description = "ATS implementation for GEOS testing"
authors = [{name = "GEOS Contributors" }]
maintainers = [
{name = "Christopher Sherman", email = "sherman27@llnl.gov"}
]
license = {text = "LGPL-2.1"}
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
requires-python = ">=3.7"
dependencies = [
"h5py",
"mpi4py",
"numpy",
"lxml",
"tabulate",
"pyyaml",
"tqdm",
"requests",
"scipy",
"GitPython",
"google-cloud-storage",
"pip-system-certs",
"ats @ https://github.com/LLNL/ATS/archive/refs/tags/7.0.105.tar.gz",
]
[project.scripts]
run_geos_ats = "geos.ats.main:main"
setup_ats_environment = "geos.ats.environment_setup:main"
geos_ats_log_check = "geos.ats.helpers.log_check:main"
geos_ats_restart_check = "geos.ats.helpers.restart_check:main"
geos_ats_curve_check = "geos.ats.helpers.curve_check:main"
geos_ats_process_tests_fails="geos.ats.helpers.process_tests_failures:main"
[project.urls]
Homepage = "https://github.com/GEOS-DEV/geosPythonPackages"
Documentation = "https://geosx-geosx.readthedocs-hosted.com/projects/geosx-geospythonpackages/en/latest/"
Repository = "https://github.com/GEOS-DEV/geosPythonPackages.git"
"Bug Tracker" = "https://github.com/GEOS-DEV/geosPythonPackages/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"*" = ["*.js", "*.css", "*.zip"]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
console_output_style = "count"
python_classes = "Test"
python_files = "tests_*.py"
python_functions = "tests*"
testpaths = ["tests"]
pythonpath = [
"src",
]
norecursedirs = "bin"
filterwarnings = []
[tool.coverage.run]
branch = true
source = ["src/geos/"]