-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
49 lines (42 loc) · 1.27 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
[tool.poetry]
name = "spline-agent"
version = "0.2.0.dev1"
description = "Spline agent for Python. Lineage tracking utility."
authors = ["Oleksandr Vayda <[email protected]>"]
license = "Apache-2.0"
homepage = "https://github.com/AbsaOSS/spline-python-agent"
repository = "https://github.com/AbsaOSS/spline-python-agent"
readme = "README.md"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries",
]
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.31.0"
http-constants = "^0.5.0"
dynaconf = "^3.2.0"
[tool.poetry.group.dev.dependencies]
types-requests = "^2.31.0.2"
pytest = "^7.4.0"
mypy = "^1.4.1"
[build-system]
requires = ["poetry-core>=1.6.1"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = "src"
log_cli = true
log_cli_level = "INFO"
[tool.mypy]
files = "."
check_untyped_defs = true
disable_error_code = ["type-abstract"]
[[tool.mypy.overrides]]
module = "http_constants.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
# this should be fixed in Dynaconf ver 4.0.0. See https://github.com/dynaconf/dynaconf/issues/448
module = "dynaconf.*"
ignore_missing_imports = true