-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
108 lines (91 loc) · 2.15 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools",
"setuptools-scm",
]
[project]
name = "chanfig"
description = "Easier Configuration"
readme = "README.md"
keywords = [
"config",
"deep-learning",
"dict",
"machine-learning",
]
license = { file = "LICENSE" }
maintainers = [
{ name = "Zhiyuan Chen", email = "[email protected]" },
]
authors = [
{ name = "Zhiyuan Chen", email = "[email protected]" },
{ name = "Evian C. Liu", email = "[email protected]" },
]
requires-python = ">=3.7"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"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",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dynamic = [
"version",
]
dependencies = [
"pyyaml",
"typing-extensions",
]
urls.documentation = "https://chanfig.danling.org"
urls.homepage = "https://chanfig.danling.org"
urls.repository = "https://github.com/ZhiyuanChen/CHANfiG"
[tool.setuptools]
packages = [ "chanfig" ]
[tool.setuptools_scm]
write_to = "chanfig/_version.py"
[tool.black]
line-length = 120
[tool.isort]
line_length = 120
profile = "black"
[tool.flake8]
max-line-length = 120
[tool.pylint.format]
max-line-length = 120
[tool.pylint.messages_control]
disable = """
E0012,
E0401,
R0201,
R0801,
"""
[tool.pylint.reports]
output-format = "colorized"
[tool.pylint.main]
fail-under = 9.8
[tool.pytest.ini_options]
addopts = "--doctest-modules --cov"
[tool.coverage.run]
branch = true
include = [ "chanfig/**" ]
[tool.coverage.paths]
source = [ "chanfig" ]
[tool.coverage.xml]
output = "coverage.xml"
[tool.coverage.json]
output = "coverage.json"
[tool.coverage.report]
show_missing = true
fail_under = 80
[tool.mypy]
ignore_missing_imports = true