-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
142 lines (128 loc) · 2.58 KB
/
setup.cfg
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
[metadata]
name = edgetest-conda
version = attr: edgetest_conda.__version__
description = Conda edgetest plugin
long_description = file: README.md, MAINTAINERS
long_description_content_type = text/markdown
author = Akshay Gupta
author_email = [email protected]
maintainer = Akshay Gupta
maintainer_email = [email protected]
url = https://github.com/capitalone/edgetest-conda
python_requires =
>=3.8.0
project_urls =
Documentation = https://capitalone.github.io/edgetest-conda
Bug Tracker = https://github.com/capitalone/edgetest-conda/issues
Source Code = https://github.com/capitalone/edgetest-conda
classifiers =
Intended Audience :: Developers
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
[options]
zip_safe = False
include_package_data = True
install_requires =
edgetest>=2022.3.0
[options.extras_require]
docs =
furo
sphinx
sphinx-copybutton
sphinx-tabs
tests =
coverage
flake8
mypy
pydocstyle
pytest
pytest-cov
qa =
black
isort
pip-tools
pre-commit
pylint
build =
build
twine
wheel
bumpver
dev =
coverage
flake8
mypy
pydocstyle
pytest
pytest-cov
furo
sphinx
sphinx-copybutton
sphinx-tabs
black
isort
pip-tools
pre-commit
pylint
build
twine
wheel
bumpver
[options.entry_points]
edgetest =
conda = edgetest_conda.plugin
[bumpver]
current_version = "2023.8.0"
version_pattern = "YYYY.MM.INC0"
commit_message = "Bump {old_version} to {new_version}"
commit = True
[bumpver:file_patterns]
docs/source/conf.py =
version = "{version}"
setup.cfg =
current_version = "{version}"
edgetest_conda/__init__.py =
__version__ = "{version}"
[aliases]
lint = pylint
[bdist_wheel]
python-tag = py3
[flake8]
max-line-length = 100
exclude = tests/*
max-complexity = 17
ignore = E203, W503
[isort]
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
line_length = 88
[mypy]
python_version = 3.10
warn_return_any = True
warn_unused_configs = True
ignore_missing_imports = True
allow_redefinition = True
[pylint]
pylint_minimum_score = 9.5
[tool:pytest]
markers =
unit: mark unit tests that do not require external interfaces and use mocking
integration: mark test that interact with an external system
addopts = --verbose
[edgetest.envs.core]
python_version = 3.10
upgrade =
edgetest
extras =
tests
deps =
pip-tools