-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
178 lines (165 loc) · 3.83 KB
/
Copy pathsetup.cfg
File metadata and controls
178 lines (165 loc) · 3.83 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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
[metadata]
name = dotzen
version = attr: dotzen.__version__
author = Carrington Muleya
author_email = carrington.muleya@outlook.com
description = Peaceful, type-safe Python configuration library with multiple design patterns
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/carrington-dev/dotzen
project_urls =
Bug Tracker = https://github.com/carrington-dev/dotzen/issues
Documentation = https://dotzen.readthedocs.io
Source Code = https://github.com/carrington-dev/dotzen
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Topic :: Software Development :: Libraries :: Python Modules
Topic :: System :: Systems Administration
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
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Operating System :: OS Independent
Typing :: Typed
keywords =
configuration
config
environment
settings
dotenv
env
secrets
encryption
license = MIT
license_files = LICENSE
[options]
packages = find:
python_requires = >=3.7
install_requires =
zip_safe = False
include_package_data = True
[options.packages.find]
exclude =
tests*
docs*
examples*
[options.extras_require]
crypto =
cryptography>=41.0.0
aws =
boto3>=1.26.0
azure =
azure-keyvault-secrets>=4.7.0
azure-identity>=1.12.0
gcp =
google-cloud-secret-manager>=2.16.0
cloud =
boto3>=1.26.0
azure-keyvault-secrets>=4.7.0
azure-identity>=1.12.0
google-cloud-secret-manager>=2.16.0
dev =
pytest>=7.0.0
pytest-cov>=4.0.0
pytest-xdist>=3.0.0
black>=23.0.0
flake8>=6.0.0
mypy>=1.0.0
isort>=5.12.0
pre-commit>=3.0.0
docs =
sphinx>=6.0.0
sphinx-rtd-theme>=1.2.0
sphinx-autodoc-typehints>=1.22.0
all =
cryptography>=41.0.0
boto3>=1.26.0
azure-keyvault-secrets>=4.7.0
azure-identity>=1.12.0
google-cloud-secret-manager>=2.16.0
[options.entry_points]
console_scripts =
dotzen = dotzen.cli:main
[tool:pytest]
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
addopts =
--verbose
--strict-markers
--tb=short
markers =
slow: marks tests as slow (deselect with '-m "not slow"')
integration: marks tests as integration tests
unit: marks tests as unit tests
encryption: marks tests related to encryption
cloud: marks tests related to cloud providers
[coverage:run]
source = dotzen
branch = True
omit =
*/tests/*
*/test_*.py
*/__pycache__/*
*/site-packages/*
[coverage:report]
precision = 2
show_missing = True
skip_covered = False
exclude_lines =
pragma: no cover
def __repr__
raise AssertionError
raise NotImplementedError
if __name__ == .__main__.:
if TYPE_CHECKING:
@abstractmethod
[coverage:html]
directory = htmlcov
[flake8]
max-line-length = 100
exclude =
.git
__pycache__
build
dist
.eggs
*.egg-info
.venv
venv
.tox
ignore = E203,E501,W503,W504
per-file-ignores =
__init__.py:F401
[mypy]
python_version = 3.7
warn_return_any = True
warn_unused_configs = True
disallow_untyped_defs = False
disallow_incomplete_defs = False
check_untyped_defs = True
no_implicit_optional = True
warn_redundant_casts = True
warn_unused_ignores = True
warn_no_return = True
warn_unreachable = True
strict_equality = True
[mypy-tests.*]
disallow_untyped_defs = False
[isort]
profile = black
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
ensure_newline_before_comments = True
line_length = 100
skip_gitignore = True
[bdist_wheel]
universal = 0