-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
89 lines (81 loc) · 1.94 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
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[project]
authors = [
{name = "fmdtools Developers"},
]
maintainers = [
{name = "Daniel Hulse", email = "daniel.e.hulse@nasa.gov"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
]
description = "System resilience modelling, simulation, and assessment in Python"
license = {file="LICENSE"}
name = "fmdtools"
version="2.0.4"
readme = "README.md"
requires-python = ">=3.10"
dependencies = ["scipy",
"tqdm",
"networkx",
"numpy >1.10, <= 1.26.4",
"matplotlib >= 3.7.0",
"pandas",
"ordered-set",
"dill",
"recordclass == 0.22.1",
"pytest",
"graphviz",
"shapely >= 2.0"
]
[project.urls]
Documentation = "https://nasa.github.io/fmdtools/"
source-code = "https://github.com/nasa/fmdtools"
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=61.0.0"
]
[tool.setuptools.packages.find]
include = ["fmdtools*", "examples*"]
[tool.coverage.report]
exclude_also = [
"def __repr__",
"raise ",
"if 0:",
"if __name__ == .__main__.:",
"def script_"
]
omit = [
# omit everything in /build
"/_build/*",
"/docs/*",
"*.pyc",
"*/__pycache__/*",
"*/tmp/*",
# omit overall test
"run_all_tests.py",
"*/__init__.py",
"*/ipykernel*",
"*/Temp/*"
]
[tool.coverage.run]
omit = [
# omit everything in /build
"/_build/*",
"/docs/*",
"*.pyc",
"*/__pycache__/*",
"*/tmp/*",
# omit overall test
"run_all_tests.py",
"*/__init__.py",
"*/ipykernel*",
"*/Temp/*"
]