-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
137 lines (126 loc) · 2.44 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "regmixer"
dynamic = ["version"]
readme = "README.md"
description = ""
authors = [
{ name = "Allen Institute for Artificial Intelligence", email = "[email protected]" }
]
requires-python = ">=3.9"
license = { file = "LICENSE" }
dependencies = [
"ai2-olmo-core @ git+https://github.com/allenai/OLMo-core.git@main",
"boto3",
"click",
"pydantic",
"s3fs",
]
[project.optional-dependencies]
dev = [
"ruff",
"mypy>=1.0,<1.4",
"black>=23.1,<24.0",
"isort>=5.12,<5.13",
"pytest",
]
beaker = [
"beaker-py",
"GitPython>=3.0,<4.0",
]
wandb = [
"wandb",
]
eval = [
"lightgbm",
"pandas",
"scipy",
"seaborn",
]
all = [
"regmixer[dev,beaker,wandb,eval]",
]
[project.scripts]
rmc = "regmixer.cli:cli"
rmc-workspace = "regmixer.workspace:cli"
rmc-train = "regmixer.train:cli"
rmc-eval = "regmixer.eval.utils:cli"
[tool.black]
line-length = 100
include = '\.pyi?$'
exclude = '''
(
__pycache__
| \.git
| \.mypy_cache
| \.pytest_cache
| \.vscode
| \.venv
| \bdist\b
| \bdoc\b
| scratch/
| build/
)
'''
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.ruff]
line-length = 115
[tool.ruff.lint]
ignore = ["F403", "F405", "E501"]
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".venv",
"venv",
".mypy_cache",
"__pycache__",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"doc",
"pretrain_data",
"inference",
]
[tool.ruff.lint.per-file-ignores]
"**/__init__.py" = ["F401"]
[tool.pyright]
reportPrivateImportUsage = false
[tool.mypy]
ignore_missing_imports = true
no_site_packages = true
check_untyped_defs = true
disable_error_code = "has-type"
[[tool.mypy.overrides]]
module = "tests.*"
strict_optional = false
[tool.pytest.ini_options]
testpaths = "tests/"
python_classes = [
"Test*",
"*Test",
]
log_format = "%(asctime)s - %(levelname)s - %(name)s - %(message)s"
log_level = "DEBUG"
log_cli = false
log_cli_level = "DEBUG"
filterwarnings = [
'ignore::FutureWarning:huggingface_hub\.file_download',
'ignore::DeprecationWarning:pkg_resources',
'ignore::DeprecationWarning:google\.rpc',
'ignore::FutureWarning:torch\.distributed\.checkpoint\.default_planner',
]