-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
102 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "progpy" | ||
version = "1.7.0-pre" | ||
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.12" | ||
authors = [ | ||
{name = "Christopher Teubert", email = "christopher.a.teubert@nasa.gov"}, | ||
{name = "Katelyn Griffith", email = "katelyn.j.griffith@nasa.gov"} | ||
, | ||
{name = "Matteo Corbetta"}, | ||
{name = "Chetan Kulkarni"}, | ||
{name = "Portia Banerjee"}, | ||
{name = "Jason Watkins"}, | ||
{name = "Matthew Daigle"} | ||
] | ||
maintainers = [ | ||
{name = "Christopher Teubert", email = "christopher.a.teubert@nasa.gov"}, | ||
{name = "Katelyn Griffith", email = "katelyn.j.griffith@nasa.gov"} | ||
] | ||
description = "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 :: 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" |