-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
110 lines (105 loc) · 2.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
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
[build-system]
# These are the assumed default build requirements from pip:
# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support
requires = ["setuptools>=43.0.0", "wheel", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["theseus"]
[project]
name = "theseus"
version = "1.5.0"
description = "A general template for various Deep Learning tasks. Strongly relies on Pytorch"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
keywords = ["pytorch", "template", "deep learning"]
authors = [
{name = "Minh-Khoi Pham", email = "[email protected]" },
{name = "Hoang-Lan Nguyen", email = "[email protected]"}
]
maintainers = [
{name = "Minh-Khoi Pham", email = "[email protected]" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Deep Learning :: Template",
"License :: MIT License",
"Programming Language :: Python :: 3",
]
dependencies = [
"seaborn>=0.12.0",
"plotly>=5.10.0",
"matplotlib>=3.4.3",
"webcolors>=1.12",
"wandb>=0.13.3",
"tensorboard>=2.10.0",
"pyyaml>=6.0",
"tqdm>=4.64.1",
"gdown>=4.5.1",
"tabulate>=0.8.10",
"loguru>=0.6.0",
"kaleido>=0.2.1",
"optuna>=3.0.5",
"deepdiff>=6.2.3",
"hydra-core>=1.3.2",
"lightning>=2.0.0"
]
[project.optional-dependencies]
dev=[
"pytest>=7.2.0",
"pytest-order>=1.0.1",
"pre-commit>=2.21.0",
]
cv = [
"albumentations>=1.1.0",
"omegaconf>=2.2.3"
]
cv_classification = [
"timm",
"scikit-plot",
"grad-cam>=1.4.5"
]
cv_semantic = [
"segmentation-models-pytorch>=0.3.0"
]
cv_detection = [
"ensemble_boxes>=1.0.9",
"pycocotools>=2.0.6",
]
nlp = [
"pyvi>=0.1.1",
"py_vncorenlp>=0.1.3",
"spacy>=3.4.2",
"transformers>=4.25.1",
"nltk>=3.7",
"captum>=0.4.1"
]
nlp_retrieval = [
"sentence_transformers>=2.2.2",
"rank_bm25>=0.2.2",
"elasticsearch>=7.17.7"
]
ml = [
"pandas",
"pandarallel>=1.6.3",
"numpy",
"scikit-learn>=1.0.0",
"scipy>=1.7.0",
"optuna>=3.0.5",
"psycopg2-binary>=2.9.5",
"gunicorn>=20.1.0",
"lightgbm>=3.3.3",
"xgboost<=1.7.1",
"catboost",
"shap>=0.41.0",
"lime>=0.2.0.1",
"scikit-plot",
]
all = [
"theseus[cv,cv_classification,cv_semantic,cv_detection,nlp,nlp_retrieval,ml]",
]
[project.urls] # Optional
"Homepage" = "https://github.com/kaylode/theseus"
[tool.isort]
profile = "black"