-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
76 lines (63 loc) · 2.3 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
[metadata]
name = iotronic_lightningrod
summary = Implementation of the Lightning-rod, the Stack4Things board-side probe
description-file =
README.rst
author = Nicola Peditto
author-email = [email protected]
home-page = http://stack4things.unime.it/
classifier =
Environment :: OpenStack
Intended Audience :: Information Technology
Intended Audience :: System Administrators
License :: OSI Approved :: Apache Software License
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
[files]
packages =
iotronic_lightningrod
data-files =
bin/ = scripts/*
/iotronic_lightningrod/templates = templates/*
/iotronic_lightningrod/etc/iotronic = etc/iotronic/iotronic.conf
/iotronic_lightningrod/etc/logrotate.d = etc/logrotate.d/lightning-rod.log
/iotronic_lightningrod/etc/systemd/system = etc/systemd/system/s4t-lightning-rod.service
[build_sphinx]
source-dir = doc/source
build-dir = doc/build
all_files = 1
[upload_sphinx]
upload-dir = doc/build/html
[compile_catalog]
directory = iotronic_lightningrod/locale
domain = iotronic_lightningrod
[update_catalog]
domain = iotronic_lightningrod
output_dir = iotronic_lightningrod/locale
input_file = iotronic_lightningrod/locale/iotronic_lightningrod.pot
[extract_messages]
keywords = _ gettext ngettext l_ lazy_gettext
mapping_file = babel.cfg
output_file = iotronic_lightningrod/locale/iotronic_lightningrod.pot
[build_releasenotes]
all_files = 1
build-dir = releasenotes/build
source-dir = releasenotes/source
[entry_points]
console_scripts =
lightning-rod = iotronic_lightningrod.lightningrod:main
s4t.modules =
utility = iotronic_lightningrod.modules.utils:Utility
plugin = iotronic_lightningrod.modules.plugin_manager:PluginManager
device = iotronic_lightningrod.modules.device_manager:DeviceManager
service = iotronic_lightningrod.modules.service_manager:ServiceManager
network = iotronic_lightningrod.modules.network_manager:NetworkManager
webservice = iotronic_lightningrod.modules.webservice_manager:WebServiceManager
rest = iotronic_lightningrod.modules.rest_manager:RestManager
[options]
build_scripts =
executable= /usr/bin/env python