-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (76 loc) · 2.59 KB
/
pyproject.toml
File metadata and controls
85 lines (76 loc) · 2.59 KB
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "Test-Time Augmentation for Model-Brain Similarity"
description = "Project investigating how we can utilize the Test-Time Augmentation to improve model-brain similarity"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [{ name = "Yingqi Rong", email = "yrong12@jh.edu" }]
keywords = ["Bonner Lab", "dimensionality", "visual cortex", "representations"]
classifiers = ["Development Status :: 4 - Beta", "Intended Audience :: Science/Research", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Natural Language :: English", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 3", "Topic :: Scientific/Engineering", "Typing :: Typed"]
urls = { repository = "https://github.com/BonnerLab/diffuse-encoder"}
dependencies = [
"loguru",
"spacy",
"more-itertools",
"GitPython",
"tqdm",
"numpy",
"torch",
"sentence-transformers",
"pandas",
"xarray",
"netCDF4",
"dask",
"scipy",
"umap-learn",
"Pillow",
"matplotlib",
"seaborn",
"colorcet",
"svgutils",
"scikit-learn",
"nilearn",
"notebook",
"ipywidgets",
"diffusers",
"transformers",
"accelerate",
"scipy",
"safetensors",
"opencv-contrib-python",
"pycocotools",
"clip",
"protobuf",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = ["pylint", "black", "mypy", "types-requests", "pytest", "bandit", "tox", "sphinx", "jupytext", "line-profiler", "memory-profiler", "snakeviz"]
[tool.black]
preview = true
[tool.mypy]
namespace_packages = true
ignore_missing_imports = true
disallow_untyped_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
# disallow_any_unimported = true
# disallow_any_expr = true
# disallow_any_decorated = true
# disallow_any_explicit = true
# disallow_any_generics = true
# disallow_subclassing_any = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_no_return = true
warn_return_any = true
warn_unreachable = true
allow_redefinition = true
[tool.jupytext.formats]
"notebooks" = "ipynb"
"scripts" = "py:percent"
[tool.jupytext]
notebook_metadata_filter = "-all"
cell_metadata_filter = "-all"