-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (44 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
48 lines (44 loc) · 1.33 KB
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "WindTurbineClassification"
version = "2024.09.0"
requires-python = ">= 3.11"
dependencies = [
"imbalanced-learn",
"matplotlib",
"pandas",
"jupyterlab",
"openpyxl",
]
authors = [
{name = "Nithiya Streethran", email = "nmstreethran@gmail.com"},
]
readme = "README.md"
description = "wind turbine fault prediction using machine learning"
keywords = ["renewable energy", "scotland", "united kingdom", "onshore wind", "wind power", "machine learning", "scada", "fault prediction", "classification", "wind turbines", "engineering"]
classifiers = [
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
]
[project.optional-dependencies]
docs = [
"myst-nb",
"pydata-sphinx-theme",
]
test = [
"ruff",
]
[project.urls]
Documentation = "https://nmstreethran.github.io/WindTurbineClassification"
Repository = "https://github.com/nmstreethran/WindTurbineClassification.git"
Issues = "https://github.com/nmstreethran/WindTurbineClassification/issues"
Zenodo = "https://doi.org/10.5281/zenodo.2875795"
[tool.ruff]
line-length = 79