forked from datacoves/dbt-coves
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
129 lines (114 loc) · 3.52 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
126
127
128
129
[tool.poetry]
name = "dbt_coves"
version = "1.5.1"
description = "CLI tool for dbt users adopting analytics engineering best practices."
authors = ["Datacoves <[email protected]>"]
license = "Apache 2.0"
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Information Technology",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Code Generators",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
include = ["templates/*"]
keywords = ["data engineering", "analytics engineering", "dbt", 'ETL', "data modelling"]
homepage = "https://datacoves.com"
documentation = "https://datacoves.gitbook.io/dbt-coves/"
repository = "https://github.com/datacoves/dbt-coves"
[tool.poetry.dependencies]
python = ">=3.7.2,<3.11"
luddite = "^1.0.1"
packaging = ">=20.8,<22.0"
pretty-errors = "^1.2.19"
pydantic = "^1.8"
PyYAML = ">=5.4.1"
questionary = "^1.9.0"
yamlloader = "^1.0.0"
pyfiglet = "^0.8.post1"
click = "^8.0.3"
rich = ">=10.4,<14.0"
Jinja2 = ">2.11.2"
python-slugify = "<9.0.0"
dbt-core = ">=1.1,<1.6"
bumpversion = "^0.6.0"
typing_extensions = { version = "^4.0", python = "^3.7" }
ruamel-yaml = "^0.17.21"
db-dtypes = "^1.0.5"
copier = "6.0.0"
gitpython = "^3.1.31"
mixpanel = "^4.10.0"
[tool.poetry.dev-dependencies]
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
mypy = "^0.991"
towncrier = "^22.12.0"
pytest-mock = "^3.6.1"
pytest-sugar = "^0.9.4"
pytest-datafiles = "^2.0"
asciinema = "^2.0.2"
pytest-dictsdiff = "^0.5.8"
black = "^23.1a1"
ipdb = "^0.13.9"
sphinx-argparse = "^0.4.0"
sphinxcontrib-restbuilder = "^0.3"
types-PyYAML = "^5.4.1"
types-python-slugify = "^8.0.0.0"
types-requests = "^2.28.11.5"
flake8 = "^5.0.0"
[tool.poetry.group.test.dependencies]
dbt-redshift = ">=1.1,<1.6"
dbt-bigquery = ">=1.1,<1.6"
dbt-snowflake = ">=1.1,<1.6"
redshift-connector = "^2.0.910"
pytest-dependency = "^0.5.1"
python-dotenv = "^0.21.1"
pandas = "^1.3.0"
snowflake-connector-python = {extras = ["pandas"], version = "^3.0"}
google-cloud-bigquery = ">2.34,<4"
tox-poetry-installer = "^0.10.0"
tox = "^3.23.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
dbt-coves="dbt_coves.core.main:main"
[tool.towncrier]
version = "1.1.1-alpha.33"
package = "dbt_coves"
package_dir = "dbt_coves/"
filename = "changelog/CHANGELOG.md"
directory = "changelog/"
start_string = "# Changelog\n"
issue_format = "[#{issue}](https://github.com/datacoves/dbt-coves/issues/{issue})"
underlines = ["", ""]
template = "changelog/.towncrier.template.md"
title_format = "## dbt-coves [{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
target-version=['py37', 'py38', 'py39', 'py310', 'py311']
[tool.isort]
known_third_party=["copier", "dbt", "dotenv", "git", "google", "jinja2", "mixpanel", "pretty_errors", "pydantic", "pyfiglet", "pytest", "questionary", "redshift_connector", "requests", "rich", "ruamel", "slugify", "snowflake"]
line_length=100
multi_line_output=3
include_trailing_comma=true
profile="black"