-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (57 loc) · 1.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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "profcomff_definitions"
authors = [
{name = "profcomff.com", email = "admin@profcomff.com"},
{name = "Roman Dyakov", email = "roman@dyakov.space"},
{name = "Stanislav Roslavtsev", email = "roslavtzev.stanislaw@yandex.ru"}
]
description = "Data warehouse definitions and schemas"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
dependencies = ["SQLAlchemy", "psycopg2-binary", "alembic"]
dynamic = ["version"]
[project.urls]
Homepage = "https://app.profcomff.com"
Documentation = "https://github.com/profcomff/dwh-definitions/blob/main/README.md"
Repository = "https://github.com/profcomff/dwh-definitions"
Issues = "https://github.com/profcomff/dwh-definitions/issues"
Changelog = "https://github.com/profcomff/dwh-definitions/releases"
[tool.setuptools]
packages = ["profcomff_definitions"]
[tool.setuptools.dynamic]
version = {attr = "profcomff_definitions.__version__"}
[project.optional-dependencies]
airflow = ["apache-airflow"]
testing = ["pytest", "pytest-cov", "pytest-mock", "httpx", "requests"]
style = ["black", "isort", "pydocstyle", "autoflake"]
[tool.black]
line-length = 120
target-version = ['py311']
skip-string-normalization = true
[tool.isort]
line_length = 120
multi_line_output = 3
profile = "black"
lines_after_imports = 2
include_trailing_comma = true
[tool.pytest.ini_options]
minversion = "7.0"
python_files = "*.py"
testpaths = [
"tests"
]
pythonpath = [
"."
]
log_cli=true
log_level=0