-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
50 lines (44 loc) · 1.14 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
[tool]
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
include = ["ml_experiment*"] # package names should match these glob patterns (["*"] by default)
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.0.0"
tag_format = "$version"
version_files = ["pyproject.toml"]
[tool.ruff.lint]
select = ['F', 'E', 'W', 'B']
ignore = ['E501', 'E701', 'B023']
[tool.pyright]
include = ['ml_experiment']
venvPath = '.'
venv = '.venv'
typeCheckingMode = 'standard'
useLibraryCodeForTypes = true
[project]
name = "ml-experiment-definition"
version = "0.0.0"
description = ""
authors = [
{name = "Parham Panahi", email = "[email protected]"},
{name = "Andy Patterson", email = "[email protected]"},
]
dependencies = []
requires-python = ">=3.11,<3.13"
readme = "README.md"
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[project.optional-dependencies]
dev = [
"pip",
"ruff",
"pytest",
"pytest-cov",
"pyright",
"commitizen",
"pre-commit",
]