From 87afa9a840a911aa9cb95902719b04b3e1dff90d Mon Sep 17 00:00:00 2001 From: ric-evans Date: Thu, 12 Sep 2024 13:21:02 -0500 Subject: [PATCH] remove `dev` extra --- setup.cfg | 124 ++++++++++++++++++++++++------------------------------ 1 file changed, 55 insertions(+), 69 deletions(-) diff --git a/setup.cfg b/setup.cfg index e6bc60bb..ece2622b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -15,28 +15,28 @@ description = REST tools in python - common code for client and server long_description = file: README.md long_description_content_type = text/markdown keywords = - python - REST - tools - utilities - OpenTelemetry - tracing - telemetry - WIPAC - IceCube + python + REST + tools + utilities + OpenTelemetry + tracing + telemetry + WIPAC + IceCube license = MIT classifiers = - Development Status :: 5 - Production/Stable - License :: OSI Approved :: MIT License - 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 + Development Status :: 5 - Production/Stable + License :: OSI Approved :: MIT License + 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 download_url = https://pypi.org/project/wipac-rest-tools/ project_urls = - Tracker = https://github.com/WIPACrepo/rest-tools/issues - Source = https://github.com/WIPACrepo/rest-tools + Tracker = https://github.com/WIPACrepo/rest-tools/issues + Source = https://github.com/WIPACrepo/rest-tools [semantic_release] # fully-generated by wipac:cicd_setup_builder version_variable = rest_tools/__init__.py:__version__ @@ -50,75 +50,61 @@ branch = master [options] # generated by wipac:cicd_setup_builder: python_requires, packages install_requires = - cachetools==5.4.0 - certifi==2024.7.4 - cffi==1.17.0 - idna==3.7 - pyjwt[crypto]!=2.6.0 - qrcode - requests - requests-futures - tornado - types-requests==2.32.0.20240712 - urllib3==2.2.2 - wipac-dev-tools + cachetools==5.4.0 + certifi==2024.7.4 + cffi==1.17.0 + idna==3.7 + pyjwt[crypto]!=2.6.0 + qrcode + requests + requests-futures + tornado + types-requests==2.32.0.20240712 + urllib3==2.2.2 + wipac-dev-tools python_requires = >=3.8, <3.13 packages = find: [options.extras_require] openapi = - openapi-core + openapi-core telemetry = - wipac-telemetry >= 0.2.4 + wipac-telemetry >= 0.2.4 tests = - coverage - flake8 - httpretty - pycycle - pytest==8.3.2 - pytest-asyncio==0.23.8 - pytest-cov - pytest-mock - requests-mock - types-requests -dev = - cryptography - flake8 - httpretty - mypy - pytest - pytest-asyncio - pytest-mock - requests-mock - ruff - types-requests - wheel + coverage + flake8 + httpretty + pycycle + pytest==8.3.2 + pytest-asyncio==0.23.8 + pytest-cov + pytest-mock + requests-mock + types-requests mypy = - %(openapi)s - %(telemetry)s - %(tests)s - %(dev)s + %(openapi)s + %(telemetry)s + %(tests)s [options.package_data] # generated by wipac:cicd_setup_builder: '*' * = py.typed [options.packages.find] # generated by wipac:cicd_setup_builder: include/exclude exclude = - test - tests - doc - docs - resource - resources - example - examples + test + tests + doc + docs + resource + resources + example + examples [flake8] ignore = E226,E231,E501 [tool:pytest] filterwarnings = - error - default::DeprecationWarning + error + default::DeprecationWarning asyncio_mode = auto -