-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
95 lines (79 loc) · 2.71 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[metadata]
name = RadLoggerPy
summary = Radiation logger for serial based geiger counters
description_file =
README.rst
description_content_type = text/x-rst; charset=UTF-8
author = Dantali0n
home_page = https://dantalion.nl
project_urls =
Bug Tracker = https://github.com/Dantali0n/RadLoggerPy/issues
Documentation = https://docs.openstack.org/pbr/
Source Code = https://github.com/Dantali0n/radloggerpy
license = Apache-2
classifier =
Environment :: Console
Intended Audience :: Radiation monitoring
Intended Audience :: Environmental monitoring
License :: Apache Software License
Operating System :: POSIX :: Linux
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
[options]
include_package_data = True
packages = find:
python_requires = >=3.8
[options.package_data]
* =
locale/*
[options.entry_points]
oslo.config.opts =
radloggerpy = radloggerpy.config.opts:list_opts
console_scripts =
radloggerpy = radloggerpy.radloggerpy:main
radloggercli = radloggerpy.radloggercli:main
radloggerpy.cli =
device_show = radloggerpy.cli.v1.device.device_show:DeviceShow
device_show_serial = radloggerpy.cli.v1.device.device_show_serial:DeviceShowSerial
device_list = radloggerpy.cli.v1.device.device_list:DeviceList
device_list_serial = radloggerpy.cli.v1.device.device_list_serial:DeviceListSerial
device_remove = radloggerpy.cli.v1.device.device_remove:DeviceRemove
device_add_serial = radloggerpy.cli.v1.device.device_add_serial:DeviceAddSerial
device_models = radloggerpy.cli.v1.device.device_models:DeviceModels
measurement_list = radloggerpy.cli.v1.measurement.measurement_list:MeasurementList
[flake8]
max-line-length = 88
show-source = True
extend-ignore = H105,E123,E125,W504,E203
enable-extensions = H106,H203,H204
builtins = _
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build
[pylint]
max-line-length = 88
[pycodestyle]
ignore = E203
max_line_length = 88
[flake8:local-plugins]
extension =
N319 = checks:no_translate_debug_logs
N322 = checks:check_assert_called_once_with
N325 = checks:check_python3_xrange
N326 = checks:check_no_basestring
N327 = checks:check_python3_no_iteritems
N328 = checks:check_assert_true
N328 = checks:check_assert_false
N330 = checks:check_assert_empty
N331 = checks:check_assert_is_instance
N333 = checks:check_log_warn_deprecated
N341 = checks:check_builtins_gettext
N342 = checks:no_redundant_import_alias
paths =
./radloggerpy/hacking
[hacking]
import_exceptions = radloggerpy._i18n
[bdist_wheel]
universal = 1