forked from meltano/meltano
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
126 lines (117 loc) · 3.02 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
[tool.poetry]
name = "meltano"
version = "2.1.0"
description = "Meltano: Your DataOps Platform Infrastructure"
authors = ["Meltano <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/meltano/meltano"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
include = [
# Explicitly include non-Python files and gitignored files:
"LICENSE",
"*.m5o",
"src/meltano/api/static/css/*",
"src/meltano/api/static/js/*",
"src/meltano/api/templates/webapp.html",
"src/meltano/api/templates/embed.html",
"src/meltano/core/tracking/.release_marker"
]
[tool.poetry.dependencies]
aiodocker = "^0.21.0"
aiohttp = "^3.4.4"
alembic = "^1.5.0"
atomicwrites = "^1.2.1"
authlib = "^1.0.1"
cached-property = "^1" # Remove after Python 3.7 support is dropped
backoff = "^2.1.2"
bcrypt = "^3.2.0" # Needs to be installed explicitly so it can be used as a backend for passlib
click = "^8.1"
click-default-group = "^1.2.1"
email-validator = "^1.1.2"
fasteners = "^0.17.3"
flask = "^2.1"
flask-cors = "^3.0.7"
flask-executor = "^0.10"
flask-restful = "^0.3.7"
flask-sqlalchemy = "^2.4.4"
flatten-dict = "^0"
gunicorn = "^20.1.0"
jsonschema = "^3.2" # Held back because of our dependency on docker-compose v1.29.2; update after https://github.com/avast/pytest-docker/pull/72 is merged.
markdown = "^3.3.7"
meltano-flask-security = "^0.1.0"
packaging = "^21.3"
psutil = "^5.6.3"
psycopg2-binary = "^2.8.5"
pyhumps = "^3.0.0"
python = ">=3.7,<3.11"
python-dotenv = "^0.20.0"
python-gitlab = "^3.5.0"
pyyaml = "^5.3.1"
requests = "^2.23.0"
smtpapi = "^0.4.1"
snowplow-tracker = "^0.10.0"
sqlalchemy = "^1.3.19"
structlog = "^21.2.0"
tzlocal = "^4.2.0"
uvicorn = {extras = ["standard"], version = "^0.17.6"}
werkzeug = "^2.1"
[tool.poetry.extras]
infra = ["ansible"]
repl = ["ipython"]
[tool.poetry.dev-dependencies]
black = "^22.3.0"
bumpversion = "^0.6.0"
changelog-cli = "^0.6.2"
colorama = "^0.4.4"
coverage = {extras = ["toml"], version = "^6.4.1"}
freezegun = "^0.3.12"
isort = "^5.10.1"
mock = "^4.0.3"
mypy = "^0.960"
pre-commit = "^2.9.2"
pylint = "^2.12.2"
pytest = "^7.1.2"
pytest-asyncio = "^0.18.3"
pytest-cov = "^3.0.0"
pytest-docker = "^0.12.0"
pyupgrade = "^2.29.1"
requests-mock = "^1.6.0"
tox = "^3.24.4"
wemake-python-styleguide = "^0.16.1"
[tool.poetry.scripts]
meltano = "meltano.cli:main"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 88
src_paths = ["src/", "tests/"]
skip_glob = ["*.md", "*.vue", "*.js"]
[tool.coverage.run]
concurrency = [ "multiprocessing" ]
parallel = true
branch = true
[tool.coverage.paths]
source = [
"src/meltano",
"**/site-packages/meltano",
"**/site-packages/meltano*/meltano",
]
[tool.coverage.report]
show_missing = true
skip_covered = true
precision = 2
exclude_lines = [
"nocov",
"if TYPE_CHECKING:",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"