blob: fd3888a5d4e30927b45920a5c9bb5d667e0fda2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/usr/bin/env python3
from plainbox.provider_manager import setup, N_
# You can inject other stuff here but please don't go overboard.
#
# In particular, if you need comprehensive compilation support to get
# your bin/ populated then please try to discuss that with us in the
# upstream project IRC channel #checkbox on irc.freenode.net.
# NOTE: one thing that you could do here, that makes a lot of sense,
# is to compute version somehow. This may vary depending on the
# context of your provider. Future version of PlainBox will offer git,
# bzr and mercurial integration using the versiontools library
# (optional)
setup(
name='plainbox-provider-sru',
namespace='com.canonical.certification',
version="1.21.0.dev0",
description=N_("The SRU provider"),
gettext_domain="plainbox-provider-sru",
)
|