forked from python-rt/python-rt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
82 lines (71 loc) · 1.7 KB
/
setup.cfg
File metadata and controls
82 lines (71 loc) · 1.7 KB
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
[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
[options]
zip_safe = False
packages = rt
include_package_data = True
python_requires = >= 3.5
install_requires =
requests
[options.packages.find]
exclude =
tests
[options.package_data]
rt = py.typed
[options.extras_require]
docs =
sphinx
sphinx-autodoc-typehints
sphinx-rtd-theme
dev =
pycodestyle
pylint
mypy
flake8
flake8-bandit
flake8-comprehensions
flake8-docstrings
pep8-naming
types-requests
test =
nose
coveralls
codecov
[mypy]
show_error_context = True
show_column_numbers = True
ignore_missing_imports = True
disallow_incomplete_defs = True
disallow_untyped_defs = True
disallow_untyped_calls = False
warn_no_return = True
warn_redundant_casts = True
warn_unused_ignores = True
strict_optional = True
check_untyped_defs = False
[pycodestyle]
filename = rt/rt.py
ignore = E501, W503, E124, E126
[flake8]
max-line-length = 160
ignore = D210, D400, W503, D205, D209, D401, E126, E124