-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (39 loc) · 989 Bytes
/
pyproject.toml
File metadata and controls
42 lines (39 loc) · 989 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "BAHAMAS"
version = "1.0.0"
authors = [
{ name="Congjian Wang", email="congjian.wang@inl.gov" },
]
description = "Bayesian and Human Reliability Analysis-Aided Method for the Reliability Analysis of Software (BAHAMAS)"
readme = "README.md"
license = {file="LICENSE"}
requires-python = ">=3.9"
dependencies = [
"scipy",
"numpy >= 1.24",
"pandas",
"openpyxl",
"pytest",
"jsonpointer",
"toml",
"streamlit",
"plotly",
"kaleido",
"matplotlib",
"streamlit_extras",
"streamlit-aggrid",
"streamlit-option-menu"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: LGPL2.1 License",
"Operating System :: OS Independent",
"Topic :: Digital I&C Engineering, Software Failure Probability Evaluation"
]
[project.urls]
"Homepage" = "https://github.com/idaholab/BAHAMAS"
[project.scripts]
bahamas = "bahamas.main:main"