-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
79 lines (69 loc) · 1.81 KB
/
setup.cfg
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
[metadata]
name = targetd_client
version = 0.5.0
author = Johan Fleury
author-email = [email protected]
home-page = https://gitlab.com/Arcaik/targetd-client
description = A client library for targetd
long-description = file: README.md
long_description_content_type = text/markdown
license = OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
license_file = LICENSE
platform = any
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
Intended Audience :: System Administrators
License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Natural Language :: English
Operating System :: POSIX
Operating System :: POSIX :: Linux
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: System
Topic :: System :: Filesystems
Topic :: Utilities
Typing :: Typed
[options]
packages = targetd_client
include_package_data = true
zip_safe = false
python_requires = >= 3.6
setup_requires =
setuptools>=38.3.0
tests_requires =
flake8
pydocstyle
install_requires =
requests
[options.extras_require]
cli =
click
tabulate
humanize
[options.entry_points]
console_scripts =
targetdctl = targetd_client.cli:main [cli]
[aliases]
test = pytest
[check]
metadata = true
strict = true
[bdist_wheel]
universal = true
[tool:pytest]
addopts = --cov=targetd_client --cov-report=term-missing
[pydocstyle]
match-dir = ^(?!tests|resources|docs|\.).*$
match = ^(?!test_|setup|\.).*\.py$
ignore = D101, D200, D203, D212
[flake8]
max-line-length = 100
doctests = True
exclude = .git, .eggs, __pycache__, docs/, build/, dist/
[mypy]
mypy_path = stubs/