-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
68 lines (61 loc) · 2.76 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "progpy"
version = "1.7.0"
dependencies = [
"scipy",
"pandas", # For data downloading features
"matplotlib",
"requests", # For data downloading features
"chaospy", # For PCE
"fastdtw", # For DTW error calculation
"filterpy"
]
requires-python = ">=3.7, <3.13"
authors = [
{name = "Christopher Teubert", email = "[email protected]"},
{name = "Katelyn Griffith", email = "[email protected]"},
{name = "Matteo Corbetta"},
{name = "Chetan Kulkarni"},
{name = "Portia Banerjee"},
{name = "Jason Watkins"},
{name = "Matthew Daigle"}
]
maintainers = [
{name = "Christopher Teubert", email = "[email protected]"},
{name = "Katelyn Griffith", email = "[email protected]"}
]
description = "The 2024 NASA Software of the Year, the NASA Prognostic Package (ProgPy) is a python prognostics framework focused on building, using, and evaluating models and algorithms for prognostics (computation of remaining useful life) and health management of engineering systems, and provides a set of prognostics models for select components and prognostics algorithms developed within this framework, including uncertainty propagation."
readme = "README.md"
license = {text = "NOSA"}
keywords = ['prognostics', 'diagnostics', 'fault detection', 'fdir', 'physics modeling', 'prognostics and health management', 'PHM', 'health management', 'surrogate modeling', 'model tuning', 'simulation', 'ivhm']
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Intended Audience :: Manufacturing',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Physics',
'License :: Other/Proprietary License ',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3 :: Only'
]
[project.optional-dependencies]
datadriven = [
"tensorflow; platform_system!='Darwin' or platform_machine!='arm64'",
"tensorflow-macos; platform_system=='Darwin' and platform_machine=='arm64'"]
[project.urls]
Homepage = "https://nasa.github.io/progpy/"
Documentation = "https://nasa.github.io/progpy/"
Repository = "https://github.com/nasa/progpy"
Issues = "https://github.com/nasa/progpy/issues"
Organization = "https://www.nasa.gov/content/diagnostics-prognostics"