-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
65 lines (57 loc) · 1.42 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ceruleo"
description = "Remaining useful life estimation utilities"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["predictive maintenance", "remaining useful life"]
license = {text = "MIT"}
dynamic = ["version"]
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
dependencies = [
"pandas >= 1.5",
"numpy >= 1.22",
"tqdm >= 4.56",
"scikit-learn >= 1.3.2",
"emd >= 0.4",
"mmh3 >= 2.0",
"pyarrow >= 4",
"gdown >= 4.2",
"pyinform >= 0.2",
"pyts >= 0.12",
"seaborn >= 0.11",
"antropy >= 0.1.5",
"uncertainties >= 3.1",
"PyWavelets >= 1.3",
"pydantic >= 1.0.0,<3.0.0"
]
[tool.hatch.version]
path = "ceruleo/__init__.py"
[project.urls]
Homepage = "https://github.com/lucianolorenti/ceruleo"
Documentation = "https://lucianolorenti.github.io/ceruleo/"
[project.optional-dependencies]
tensorflow = ["tensorflow >= 2.5"]
test = [
"pytest",
"coverage",
"xgboost >= 1.5",
"nbmake>=1.5.0"
]
doc = [
"mkdocs",
"mkdocstrings[python]",
"mkdocs-material",
"mkdocs-jupyter",
"notebook<=6.5",
"jupyter_contrib_nbextensions",
"mkdocstrings",
"mkdocs-bibtex",
"sphinxcontrib.bibtex",
"mkdocs-matplotlib",
]