-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (72 loc) · 2.38 KB
/
Copy pathpyproject.toml
File metadata and controls
84 lines (72 loc) · 2.38 KB
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
[build-system]
requires = ["setuptools>=42", "setuptools-scm[toml]>=3.4"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[tool.setuptools.packages.find]
include = ["envwrap"]
[project.urls]
repository = "https://github.com/tqdm/envwrap"
changelog = "https://github.com/tqdm/envwrap/releases"
[project]
name = "envwrap"
dynamic = ["version"]
maintainers = [{name = "tqdm developers", email = "devs@tqdm.ml"}]
description = "Override parameter defaults via environment variables & config files"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["config", "environment", "env", "defaults", "partial", "appdir", "appdirs", "platformdirs"]
license = {text = "MPL-2.0"}
# Trove classifiers (https://pypi.org/pypi?%3Aaction=list_classifiers)
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: MacOS",
"Operating System :: Microsoft",
"Operating System :: POSIX",
"Operating System :: Unix"]
dependencies = [
"platformdirs",
"toml; python_version < '3.11'",
"PyYAML",
]
[project.optional-dependencies]
dev = ["pytest>=6", "pytest-cov", "toml"]
[project.scripts]
envwrap = "envwrap.cli:main"
[tool.bandit]
exclude_dirs = ["tests"]
[tool.flake8]
max_line_length = 99
extend_ignore = ["E261"]
exclude = [".git", "__pycache__", "build", "dist", ".eggs"]
[tool.yapf]
spaces_before_comment = [15, 20]
arithmetic_precedence_indication = true
allow_split_before_dict_value = false
coalesce_brackets = true
column_limit = 99
each_dict_entry_on_separate_line = false
space_between_ending_comma_and_closing_bracket = false
split_before_named_assigns = false
split_before_closing_bracket = false
blank_line_before_nested_class_or_def = false
[tool.isort]
line_length = 99
known_first_party = ["envwrap", "tests"]
[tool.pytest.ini_options]
minversion = "6.0"
log_level = "INFO"
testpaths = ["tests"]
addopts = "-v --tb=short -rxs -W=error --durations=0 --durations-min=0.1"
[tool.coverage.run]
branch = true
[tool.coverage.report]
show_missing = true