This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (45 loc) · 1.58 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
[build-system]
requires = ["setuptools>=61.2.0", "setuptools_scm[toml]>=3.4.3"]
build-backend = "setuptools.build_meta"
[project]
name = "backblaze_analytics"
authors = [{name = "KOLANICH"}]
description = "Scripts to analyse BackBlaze dataset of HDD data"
readme = "ReadMe.md"
keywords = ["HDD", "reliability", "statistics", "BackBlaze", "dataset", "S.M.A.R.T.", "survivabilty", "kaplan-meier", "cox"]
license = {text = "Unlicense"}
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: Public Domain",
"Operating System :: OS Independent",
]
dependencies = [
"AutoXGBoost", # @ git+https://codeberg.org/KOLANICH-ML/AutoXGBoost.py.git
"HDDModelDecoder", # @ git+https://codeberg.org/KOLANICH-ML/HDDModelDecoder.py.git
"NoSuspend", # @ git+https://codeberg.org/KOLANICH-libs/NoSuspend.py.git
"lazily", # @ git+https://codeberg.org/KOLANICH-libs/lazily.py.git
"plumbum", # @ git+https://github.com/tomerfiliba/plumbum.git
"lifelines", # @ git+https://github.com/CamDavidsonPilon/lifelines.git
"tqdm", # @ git+https://github.com/tqdm/tqdm.git
"requests", # @ git+https://github.com/psf/requests.git
"pandas",
"beautifulsoup4",
"psutil",
"lazy_object_proxy",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://codeberg.org/KOLANICH-ML/backblaze_analytics.py"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
include = [
"backblaze_analytics",
"backblaze_analytics.*",
]
namespaces = false
[tool.setuptools_scm]