-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
78 lines (68 loc) · 1.84 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "inverse-canopy"
version = "0.0.22"
description = "Tensorflow based library for back-fitting event tree conditional/functional event probability distributions to match target end-state frequencies."
readme = "README.md"
authors = [{name = "Arjun Earthperson", email = "a.earthperson@openpra.org"}]
license = {file = "LICENSE"}
requires-python = ">=3.10"
keywords = ["tensorflow", "probability", "event tree", "fault tree", "scientific"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering",
"Typing :: Typed"
]
dependencies = [
"tensorflow>=2.17.0",
"tensorflow-probability>=0.24.0",
"tf-keras>=2.17.0",
"numpy>=1.26.4",
"scipy>=1.14.0",
"matplotlib>=3.9.2"
]
[project.optional-dependencies]
cuda = [
"tensorflow[and-cuda]"
]
metal = [
"tensorflow==2.13.1",
"tensorflow-metal==1.0.0",
"tensorflow-probability==0.21.0"
]
test = [
"pytest-xdist",
"pytest",
"pytest-cov",
"ruff"
]
dev = [
"build",
"pytest-xdist",
"pytest",
"pytest-cov",
"ruff",
"twine"
]
[project.urls]
Homepage = "https://openpra.org"
Repository = "https://github.com/openpra-org/inverse-canopy"
Documentation = "https://docs.openpra.org"
[project.scripts]
[tool.pytest.ini_options]
addopts = "-ra -v --strict-markers"
testpaths = [
"tests"
]
[tool.setuptools]
packages = ["inverse_canopy"]