This repository has been archived by the owner on Oct 3, 2024. It is now read-only.
forked from daipe-ai/daipe-template-feature-store
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
125 lines (116 loc) · 2.75 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
[tool.poetry]
name = "daipe-project"
version = "1.0"
description = "Daipe Project"
authors = [
"Datasentics Daipe Team"
]
[tool.poetry.dependencies]
# DBR 9.1 python
python = "3.8.10"
# DBR 9.1 dependencies
pip = "21.0.1"
setuptools = "52.0.0"
wheel = "0.36.2"
boto3 = "1.16.7"
chardet = "4.0.0"
idna = "2.10"
ipython-genutils = "0.2.0"
joblib = "1.0.1"
kiwisolver = "1.3.1"
numpy = "1.19.2"
patsy = "0.5.1"
Pillow = "8.2.0"
prompt-toolkit = "3.0.17"
ptyprocess = "0.7.0"
python-dateutil = "2.8.1"
requests = "2.25.1"
scikit-learn = "0.24.1"
statsmodels = "0.12.2"
tornado = "6.1"
urllib3 = "1.25.11"
appdirs = "1.4.4"
botocore = "1.19.7"
cycler = "0.10.0"
decorator = "5.0.6"
facets-overview = "1.0.0"
ipykernel = "5.3.4"
jedi = "0.17.2"
jupyter-client = "6.1.12"
koalas = "1.8.1"
pandas = "1.2.4"
pexpect = "4.8.0"
protobuf = "3.17.2"
pyarrow = "4.0.0"
pyparsing = "2.4.7"
pytz = "2020.5"
requests-unixsocket = "0.2.0"
scipy = "1.6.2"
six = "1.15.0"
tenacity = "6.2.0"
traitlets = "5.0.5"
virtualenv = "20.4.1"
backcall = "0.2.0"
certifi = "2020.12.5"
Cython = "0.29.23"
distlib = "0.3.2"
filelock = "3.0.12"
ipython = "7.22.0"
jmespath = "0.10.0"
jupyter-core = "4.7.1"
matplotlib = "3.4.2"
parso = "0.7.0"
pickleshare = "0.7.5"
plotly = "5.1.0"
Pygments = "2.8.1"
pyzmq = "20.0.0"
s3transfer = "0.3.7"
seaborn = "0.11.1"
ssh-import-id = "5.10"
threadpoolctl = "2.1.0"
wcwidth = "0.2.5"
zipp = "3.4.1"
importlib-metadata = "3.10.0"
distro = "1.4.0"
# Custom dependencies
injecta = "0.10.*"
databricks-bundle = "^1.3.1"
datalake-bundle = "^1.2.2"
daipe-core = "^1.4.3"
feature-store-bundle = "2.2.0b1"
[tool.poetry.dev-dependencies]
databricks-connect = { url = "https://daipe-packages.s3.eu-central-1.amazonaws.com/databricks-connect-9.1.2.tar.gz" }
poethepoet = ">=0.9.0,<1.0.0"
pyfony-core = "^0.8.2"
dbx-deploy = "^1.3.1"
lineage-bundle = "^1.0.2"
jobs-bundle = "^0.5.1"
pylint = "^2.12.2"
cached-property = "^1.5.2"
[pyfony.bootstrap]
root_module_name_search_exclude=["daipe"]
[tool.pylint.basic]
const-naming-style = "snake_case"
class-naming-style = "any"
module-rgx = "(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$"
[tool.pylint.messages_control]
disable = [
"bad-continuation",
"bare-except",
"broad-except",
"consider-using-set-comprehension",
"duplicate-code",
"line-too-long",
"missing-docstring",
"no-self-use",
"too-few-public-methods",
"too-many-arguments",
"ungrouped-imports",
"unnecessary-comprehension",
"wrong-import-order",
]
good-names = ["e", "i", "k", "v", "df"]
[tool.poe.tasks]
pylint = "pylint src"
container-check = { shell = "python src/$(ls -I daipe.py src)/ContainerTest.py" }
unify-imports = { shell = "python $(python -c 'import sysconfig; print(sysconfig.get_paths()[\"purelib\"])')/daipecore/shortcut/ShortcutCreator.py" }