forked from artefactory/xhec-mlops-project-student
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (38 loc) · 1.11 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "xhec-mlops-project-student"
authors = [
{ name = "Benjamin Cerf", email = "[email protected]" },
{ name = "Matthieu Delsart", email = "[email protected]" },
{ name = "Francois Lebrun", email = "[email protected]" },
{ name = "Augustin De Saint Afrique", email = "[email protected]" },
]
description = "This repository contains the solution for the X-HEC MLOps Project on the industrialization of Abalone age prediction model."
version = "0.0.1"
readme = "README.md"
requires-python = ">=3.10"
[project.urls]
"Homepage" = "https://github.com/FrancoisLbrn/xhec-mlops-project-student"
[tool.setuptools]
packages = ["src"]
[tool.black]
line-length = 79
target-version = ['py310']
skip-string-normalization = true
exclude = '''
/(
\.git
| \.venv
| build
| dist
)/
'''
[tool.isort]
profile = "black"
line_length = 88
known_third_party = ["pandas", "numpy", "scipy", "sklearn", "mlflow"] # Add your third-party libraries
skip_gitignore = true
[tool.flake8]
# in .flake8 file