-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
99 lines (84 loc) · 2.41 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
[tool.poetry]
name = "dbt-sugar"
version = "0.2.0"
description = "A sweet CLI tool to help dbt users enforce documentation and testing on their dbt projects."
authors = ["Bastien Boutonnet <[email protected]>"]
license = "GPLv3+"
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
]
keywords = ["data engineering", "dbt", 'ETL', "data modelling"]
documentation = "https://bitpicky.gitbook.io/dbt-sugar/"
repository = "https://github.com/bitpicky/dbt-sugar"
# homepage =
[tool.poetry.dependencies]
python = ">=3.6.3,<4.0"
luddite = "^1.0.1"
packaging = ">=20.8,<22.0"
pretty-errors = "^1.2.19"
snowflake-sqlalchemy = "1.2.4"
clickhouse-sqlalchemy = "0.2.1"
SQLAlchemy = ">=1.3.0,<1.5.0"
pydantic = "^1.8"
PyYAML = "^5.4.1"
questionary = "^1.9.0"
yamlloader = "^1.0.0"
pyfiglet = "^0.8.post1"
rich = ">=9.13,<11.0"
psycopg2 = "^2.8.6"
sqlalchemy-redshift = "^0.8.2"
click = "^7.1.2"
logredactor = "^0.0.1"
"ruamel.yaml" = "^0.17.10"
[tool.poetry.dev-dependencies]
pytest = "^7.0.0"
pytest-cov = "^2.12.1"
mypy = "^0.971"
towncrier = "^21.3.0"
pytest-mock = "^3.6.1"
pytest-sugar = "^0.9.4"
pytest-datafiles = "^2.0"
tox-poetry-installer = "^0.8.3"
pre-commit = "^2.17.0"
tox = "^3.24.4"
asciinema = "^2.0.2"
pytest-dictsdiff = "^0.5.8"
bumpversion = "^0.6.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
dbt-sugar="dbt_sugar.core.main:main"
[tool.towncrier]
package = "dbt_sugar"
package_dir = "dbt_sugar/"
filename = "changelog/CHANGELOG.md"
directory = "changelog/"
start_string = "# Changelog\n"
issue_format = "[#{issue}](https://github.com/bitpicky/dbt-sugar/issues/{issue})"
underlines = ["", ""]
template = "changelog/.towncrier.template.md"
title_format = "## dbt-sugar [{version}] - {project_date}"
[[tool.towncrier.type]]
directory = "fix"
name = "Bug Fixes"
showcontent = true
[[tool.towncrier.type]]
directory = "feature"
name = "Features"
showcontent = true
[[tool.towncrier.type]]
directory = "misc"
name = "Under The Hood/Misc"
showcontent = true
[tool.pytest.ini_options]
markers = ["datafiles"]
[tool.black]
line-length = 100