63
by Michael Terry
Add simple plainbox test |
1 |
#!/usr/bin/env python3
|
2 |
from plainbox.provider_manager import setup, N_ |
|
3 |
||
4 |
# You can inject other stuff here but please don't go overboard.
|
|
5 |
#
|
|
6 |
# In particular, if you need comprehensive compilation support to get
|
|
7 |
# your bin/ populated then please try to discuss that with us in the
|
|
8 |
# upstream project IRC channel #checkbox on irc.freenode.net.
|
|
9 |
||
10 |
# NOTE: one thing that you could do here, that makes a lot of sense,
|
|
11 |
# is to compute version somehow. This may vary depending on the
|
|
12 |
# context of your provider. Future version of PlainBox will offer git,
|
|
13 |
# bzr and mercurial integration using the versiontools library
|
|
14 |
# (optional)
|
|
15 |
||
16 |
setup( |
|
17 |
name='2015.com.canonical.snapcraft:tests', |
|
18 |
version="1.0", |
|
63.1.3
by Zygmunt Krynicki
Give snapcraft provider a more useful name |
19 |
description=N_("Plainbox test provider for Snapcraft") |
63
by Michael Terry
Add simple plainbox test |
20 |
)
|