-
Notifications
You must be signed in to change notification settings - Fork 99
/
pyproject.toml
64 lines (55 loc) · 1.42 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
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.2,<4"]
[project]
authors = [{ name = "Yury Gorishniy" }]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = ["torch >=1.8,<3"]
dynamic = ["version", "description"]
keywords = [
"artificial intelligence",
"deep learning",
"library",
"python",
"pytorch",
"research",
"torch",
"tabular",
"tabular data",
]
license = { file = "LICENSE" }
name = "rtdl"
requires-python = ">=3.8"
[project.urls]
Code = "https://github.com/yandex-research/rtdl"
Documentation = "https://github.com/yandex-research/rtdl"
[tool.black]
skip_string_normalization = true
[tool.flit.module]
name = "rtdl"
[tool.isort]
profile = "black"
multi_line_output = 3
known_first_party = ["rtdl"]
[tool.mypy]
check_untyped_defs = true
ignore_missing_imports = true
[tool.ruff]
line-length = 88
extend-select = ["RUF", "UP", "E101", "E501"]
target-version = "py38"
[tool.ruff.per-file-ignores]
"rtdl/_utils.py" = ["E501"]
"rtdl/data.py" = ["E501"]
"rtdl/modules.py" = ["E501"]
"rtdl/nn/*" = ["E501"]
[[tool.mypy.overrides]]
module = "rtdl.*.tests.*"
ignore_errors = true