-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (32 loc) · 865 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (32 loc) · 865 Bytes
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "plant_leaves"
version = "0.0.1"
description = "An MLOps (DTU02476) project work."
authors = [
{ name = "Group 96", email = "michalisdikaiopoulos@gmail.com" },
]
license = { file = "LICENSE" }
keywords = ["machine learning", "MLOps"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
]
readme = "README.md"
requires-python = ">=3.11"
dynamic = ["dependencies", "optional-dependencies"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.dynamic.optional-dependencies]
dev = {file = ['requirements_dev.txt']}
[tool.ruff]
line-length = 120
lint.select = ["I"]
[tool.coverage.run]
omit = ["tests/*"]
[tool.mypy]
ignore_missing_imports = true
[tool.hydra]
config_path = "configs/"