SHA256
15
0
forked from pool/python-rt
Files
python-rt/setup.cfg
Sebastian Wagner 53282091bd - switch to github tarball, as there's no longer an sdist on pypi
- update to version v3.3.3:
 - Changes
  - Starting with version 0.28.0 of httpx, *verify* should be either a bool or an *SSL Context*.
- update to version 3.3.2:
 - Fixes
  - Replace the removed httpx parameter of *proxies* by *proxy* (fixes #102)
  - Pin dependencies to supported relative upstream versions.
  - Remove the now obsolete *setup.py*.
- update to version 3.3.1:
 - Fixes
  - Fix str(bytes) warning (*BytesWarning: str() on a bytes instance*) (#1074)
 - Changes
  - Set included files for ruff
  - Switch to hatchling
  - Set ignores for tests files
  - Ignore uv.lock
- update to version 3.3.0:
 - Removed
  - Remove support for now EoL Python 3.8.
- update to version 3.2.0:
 - Added
  - Added option for custom list of fields to be populated for search "query_format" param to avoid unnecessary round trips to get fields like Told, Starts, Resolved, etc by returning the required fields during search. (see #97 @nerdfirefighter)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-rt?expand=0&rev=45
2025-01-07 10:39:35 +00:00

78 lines
1.8 KiB
INI

[bdist_wheel]
universal = 0
[metadata]
name = rt
description = Python interface to Request Tracker API
long_description = file: README.rst
long_description_content_type = text/x-rst
license = GNU General Public License v3 (GPLv3)
license_file = LICENSE
author = Georges Toth
author_email = georges.toth@govcert.etat.lu
url = https://github.com/python-rt/python-rt
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: POSIX
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3
Topic :: Software Development :: Libraries :: Python Modules
project_urls =
Documentation = https://python-rt.readthedocs.io/
Source = https://github.com/python-rt/python-rt
Tracker = https://github.com/python-rt/python-rt/issues
Changelog = https://github.com/python-rt/python-rt/blob/master/CHANGELOG.md
[options]
zip_safe = False
packages = rt
include_package_data = True
python_requires = >= 3.7
install_requires =
requests
requests_toolbelt
typing-extensions ; python_version < "3.8"
[options.packages.find]
exclude =
tests
[options.package_data]
rt = py.typed
[options.extras_require]
docs =
sphinx
sphinx-autodoc-typehints
sphinx-rtd-theme
furo
sphinx-copybutton
dev =
pycodestyle
pylint
mypy
flake8
flake8-bandit
flake8-comprehensions
flake8-docstrings
pep8-naming
types-requests
codespell
test =
pytest
coverage
[pycodestyle]
filename = rt/rt.py
ignore = E501, W503, E124, E126
[flake8]
max-line-length = 240
ignore = D210, D400, W503, D205, D209, D401, E126, E124, N803