forked from ioangatop/jsonargparse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
166 lines (144 loc) · 3.81 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
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
[options]
packages = find:
test_suite = jsonargparse_tests
python_requires = >=3.6
install_requires =
PyYAML>=3.13
contextvars>=2.4; python_version == '3.6'
dataclasses>=0.8; python_version == '3.6'
[options.extras_require]
all =
%(signatures)s
%(jsonschema)s
%(jsonnet)s
%(urls)s
%(fsspec)s
%(argcomplete)s
%(ruyaml)s
%(omegaconf)s
%(typing_extensions)s
%(reconplogger)s
signatures =
docstring-parser>=0.15
typeshed-client>=2.1.0
jsonschema =
jsonschema>=3.2.0
jsonnet =
jsonnet>=0.13.0; os_name == 'posix'
jsonnet-binary>=0.17.0; os_name != 'posix'
urls =
requests>=2.18.4
fsspec =
fsspec>=0.8.4
argcomplete =
argcomplete>=2.0.0
ruyaml =
ruyaml>=0.20.0
omegaconf =
omegaconf>=2.1.1
typing_extensions =
typing-extensions>=3.10.0.0; python_version < '3.8'
reconplogger =
reconplogger>=4.4.0
test =
%(test_no_urls)s
%(types_pyyaml)s
responses>=0.12.0
types-requests>=2.28.9
test_no_urls =
coverage>=4.5.1
dev =
%(test)s
%(doc)s
%(pylint)s
%(mypy)s
pre-commit>=2.19.0
tox>=3.25.0
pycodestyle>=2.5.0
pylint =
pylint>=2.15.6
mypy =
%(types_pyyaml)s
mypy>=0.701
types_pyyaml =
types-PyYAML>=6.0.11
doc =
Sphinx>=1.7.9
sphinx-rtd-theme>=0.4.3
autodocsumm>=0.1.10
sphinx-autodoc-typehints>=1.19.5
maintainer =
bump2version>=0.5.11
[options.package_data]
jsonargparse =
*.pyi
py.typed
[metadata]
name = jsonargparse
version = 4.19.0
description = Implement minimal boilerplate CLIs derived from type hints and parse from command line, config files and environment variables.
long_description_content_type = text/x-rst
author = Mauricio Villegas
author_email = [email protected]
license = MIT
url = https://github.com/omni-us/jsonargparse
project_urls =
Documentation-stable = https://jsonargparse.readthedocs.io/en/stable/
Documentation-latest = https://jsonargparse.readthedocs.io/en/latest/
Changes = https://jsonargparse.readthedocs.io/en/stable/changelog.html
GitHub = https://github.com/omni-us/jsonargparse
Issue Tracker = https://github.com/omni-us/jsonargparse/issues
PyPI = https://pypi.org/project/jsonargparse
CircleCI = https://circleci.com/gh/omni-us/jsonargparse
SonarCloud = https://sonarcloud.io/dashboard?id=omni-us_jsonargparse
Codecov = https://codecov.io/gh/omni-us/jsonargparse
platforms = any
classifiers =
Development Status :: 5 - Production/Stable
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
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
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: POSIX :: Linux
Operating System :: MacOS
Operating System :: Microsoft :: Windows
[build_sphinx]
version = local build
release = local build
source_dir = sphinx
build_dir = sphinx/_build
[pycodestyle]
exclude = sphinx/conf.py,setup.py
ignore = E241,E265,E128,E266,E226,E722,E252,E231,W291,E303,E221,E402,E306,E704,E251,E301,W504,E302
max-line-length = 180
[mypy]
ignore_missing_imports = true
allow_redefinition = true
warn_unused_ignores = true
[pylint]
disable = no-member
errors-only = true
[isort]
profile = black
multi_line_output = 3
[tox:tox]
envlist = py{36,37,38,39,310,311}-{all,no}-extras,pypy3,omegaconf
skip_missing_interpreters = true
[testenv]
extras =
all-extras: test,all
no-extras: test_no_urls
changedir = jsonargparse_tests
commands = python -m unittest
usedevelop = true
[testenv:omegaconf]
extras = test,all
setenv =
JSONARGPARSE_OMEGACONF_FULL_TEST = true