forked from pool/python-rt
- Update to version v3.4.0:
- Added - Added functionality for some of the asset endpoints (get, create, edit, search, get history) - Added functionality for the get catalog endpoint - Update to version v3.3.9: - Fixes - In debug mode, where content may be dumped, said content may not decode correctly if it is not utf-8. Ignore errors as we don't care about that in debug mode anyways (fixes #113) - Update to version v3.3.8: - Added - Allow for specifying a custom RT JSON filter when querying for attachments for a ticket (#110). This solved the issue with not returning attachment IDs in case an attachment file name is empty as the default query explicitely excludes those. - Changes - Remove unused noqa directives - Do not use len() in asset when no comparison is being done - Add quotes to type expression in `typing.cast()` - Update to version v3.3.7: - Changes - Use RT v6 based docker image for tests - Fixes - Fix optional return types (#111) OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-rt?expand=0&rev=51
This commit is contained in:
77
setup.cfg
Normal file
77
setup.cfg
Normal file
@@ -0,0 +1,77 @@
|
||||
[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
|
||||
Reference in New Issue
Block a user