-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (52 loc) · 1.55 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
[tool.poetry]
name = "envcast"
version = "1.2.0"
authors = ["Denis Anikin <ad@xfenix.ru>"]
license = "MIT"
description = "This module helps to cast environment variables to desired types. It may be very useful for 12factor app usage."
readme = "README.md"
homepage = "https://github.com/xfenix/envcast/"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.urls]
"Documentation" = "https://github.com/xfenix/envcast#envcast"
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.dev-dependencies]
pylint = "*"
pytest = "*"
pytest-xdist = "*"
mypy = "*"
Faker = "*"
pytest-cov = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.flit.metadata]
dist-name = "envcast"
module = "envcast"
[tool.isort]
line_length = 120
multi_line_output = 3
include_trailing_comma = true
lines_after_imports = 2
lexicographical = true
sections = ["FUTURE", "STDLIB", "FIRSTPARTY", "THIRDPARTY", "LOCALFOLDER"]
no_lines_before = ["STDLIB", "THIRDPARTY"]
known_third_party = []
known_local_folder = ["envcast",]
[tool.black]
line-length = 120
[tool.pytest.ini_options]
addopts = "--cov . --cov-report term-missing"
[tool.pylint.format]
max-line-length=120
[tool.pylint.messages_control]
disable=["logging-fstring-interpolation"]