Add black dev package, synchronize setup.py

This commit is contained in:
2023-05-11 23:49:41 -05:00
parent baa6ae208a
commit 99ed82dedb
3 changed files with 11 additions and 12 deletions

View File

@@ -45,8 +45,8 @@ setup(
"cachetools==5.3.0; python_version ~= '3.7'",
"certifi==2023.5.7; python_version >= '3.6'",
"charset-normalizer==3.1.0; python_full_version >= '3.7.0'",
"click==7.1.2",
"colorama==0.4.6; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6'",
"click==8.1.3",
"colorama==0.4.6; platform_system == 'Windows'",
"colored-traceback==0.3.0",
"commonmark==0.9.1",
"google-api-core==2.11.0; python_version >= '3.7'",
@@ -84,41 +84,39 @@ setup(
],
extras_require={
"dev": [
"appdirs==1.4.4",
"attrs==23.1.0; python_version >= '3.7'",
"black==19.10b0; python_version >= '3.6'",
"black==22.12.0; python_version >= '3.6'",
"cached-property==1.5.2",
"cerberus==1.3.4",
"certifi==2023.5.7; python_version >= '3.6'",
"chardet==5.0.0; python_version >= '3.6'",
"charset-normalizer==3.1.0; python_full_version >= '3.7.0'",
"click==7.1.2",
"colorama==0.4.6; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6'",
"click==8.1.3",
"colorama==0.4.6; platform_system == 'Windows'",
"distlib==0.3.6",
"idna==3.4; python_version >= '3.5'",
"mypy-extensions==1.0.0; python_version >= '3.5'",
"orderedmultidict==1.0.1",
"packaging==20.9; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'",
"pathspec==0.11.1; python_version >= '3.7'",
"pep517==0.13.0; python_version >= '3.6'",
"pip==23.1.2; python_version >= '3.7'",
"pip-shims==0.7.3; python_version >= '3.6'",
"pipenv-setup[black]==3.1.4",
"pipenv-setup[black]==3.2.0",
"pipfile==0.0.2",
"platformdirs==3.5.1; python_version >= '3.7'",
"plette[validation]==0.4.4; python_version >= '3.7'",
"pyparsing==3.0.9; python_version >= '3.1'",
"python-dateutil==2.8.2; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'",
"regex==2023.5.5; python_version >= '3.6'",
"requests==2.30.0; python_version >= '3.7'",
"requirementslib==1.6.9; python_version >= '3.7'",
"setuptools==67.7.2",
"six==1.16.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'",
"toml==0.10.2; python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2, 3.3'",
"tomlkit==0.11.8; python_version >= '3.7'",
"typed-ast==1.5.4; python_version >= '3.6'",
"urllib3==1.26.15; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5'",
"vistir==0.6.1",
"wheel==0.40.0; python_version >= '3.7'",
]
}
},
)