-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (42 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
52 lines (42 loc) · 1.28 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
[tool.poetry]
name = "data_utils"
version = "0.1.0"
description = ""
authors = ["THIVEND <baptiste.thivend@protonmail.com>"]
license = "AGPLv3"
readme = "README.md"
packages = [{include = "data_utils"}]
[tool.poetry.dependencies]
python = "^3.10.0"
metabase-api = "^0.3.0"
progressbar2 = "^4.2.0"
rocketchat-api = "^1.30.0"
pandas = "^2.2.3"
sqlalchemy = "^2.0.13"
psycopg2 = "^2.9.6"
openpyxl = "^3.1.2"
citric = "^0.7.0"
python-dotenv = "^1.0.0"
[tool.poetry.scripts]
# card_changer
db_changer = 'data_utils.card_changer.main:db_changer'
model_changer = 'data_utils.card_changer.main:model_changer'
custom_changer = 'data_utils.card_changer.main:custom_changer'
# query_checker
query_checker = 'data_utils.query_checker.main:start'
# form_summary
make_summary = "data_utils.form_summary.main:make_summary"
make_summary_dbt = "data_utils.form_summary_dbt.main:make_summary_dbt"
# form_filtering
make_form_filters = "data_utils.form_summary.form_filtering:make_form_filters"
# file import
file_import = "data_utils.file_import.main:main"
# pivot_answers
pivot_answers = "data_utils.pivot_answers.main:main"
# ls_import
ls_import = "data_utils.ls_import.main:main"
[tool.poetry.group.dev.dependencies]
flake8 = "^6.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"