forked from coqui-ai/coqpit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
83 lines (75 loc) · 1.75 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "coqpit-config"
version = "0.1.1"
description = "Simple (maybe too simple), light-weight config management through python data-classes."
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
authors = [
{name = "Eren Gölge", email = "[email protected]"}
]
maintainers = [
{name = "Enno Hermann", email = "[email protected]"}
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
]
dependencies = [
"typing_extensions>=4.10",
]
[dependency-groups]
dev = [
"coverage>=7",
"mypy>=1.12.0",
"pre-commit>=3",
"pytest>=8",
"ruff==0.6.9",
]
[project.urls]
Repository = "https://github.com/idiap/coqui-ai-coqpit"
Issues = "https://github.com/idiap/coqui-ai-coqpit/issues"
[tool.hatch.build]
exclude = [
"/.github",
"/.gitignore",
"/.pre-commit-config.yaml",
"/Makefile",
"/tests",
]
[tool.hatch.build.targets.wheel]
packages = ["coqpit"]
[tool.ruff]
target-version = "py39"
line-length = 120
lint.select = ["ALL"]
lint.ignore = [
"ANN401",
"D104",
"FIX",
"TD",
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.per-file-ignores]
"tests/**" = [
"D",
"FA100",
"PLR2004",
"S101",
"SLF001",
"T201",
]