-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
39 lines (31 loc) · 927 Bytes
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "catsvsdogs"
version = "0.0.1"
description = "A project to classify pictures of cats and dogs and deepen our knowledge in MLOps."
authors = [{ name = "group 50", email = "[email protected]" }]
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
indent-width = 4
exclude = ["reports/"]
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "B", "I"]
[tool.ruff.format]
quote-style = "double"
[tool.coverage.run]
include = ["src/*"]
omit = ["tests/*"]