forked from clane9/columnformers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (41 loc) · 915 Bytes
/
pyproject.toml
File metadata and controls
49 lines (41 loc) · 915 Bytes
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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "columnformers"
description = "A transformer-inspired model of the brain"
authors = [
{name = "Connor Lane", email = "connor.lane858@gmail.com"},
]
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT License"}
dependencies = [
"datasets",
"fvcore",
"matplotlib",
"numpy",
"Pillow",
"timm",
"torch",
"torchvision",
"transformers",
"wandb",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/clane9/columnformers"
[tool.setuptools_scm]
write_to = "columnformers/_version.py"
[tool.setuptools.packages.find]
include = ["columnformers*"]
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
[tool.pyright]
include = [
"columnformers",
"tests",
]