Blame view

buildout.cfg 4.91 KB
Taras Kozlovskyi authored
1 2 3
[buildout]
extensions = mr.developer
auto-checkout = *
4
always-checkout = true
5
develop = .
6 7
find-links =
    http://op:x9W3jZ@dist.quintagroup.com/op/
Taras Kozlovskyi authored
8
kosaniak authored
9 10
index = https://pypi.python.org/simple
Taras Kozlovskyi authored
11 12 13 14 15
parts =
    scripts

[scripts]
recipe = zc.recipe.egg
selurvedu authored
16
eggs =
Dmitriy Belyaev authored
17 18
    cryptography
    pyOpenSSL
selurvedu authored
19 20
    op_robot_tests
    openprocurement_client
kosaniak authored
21
    restkit
22
    robotframework
selurvedu authored
23 24
    robotframework-lint
    robotframework-debuglibrary
stitarchuk authored
25
    robot_tests.broker.alltenders
kosaniak authored
26
    robot_tests.broker.aladdin
27
    robot_tests.broker.dzo
kosaniak authored
28
    robot_tests.broker.izitrade
29
    robot_tests.broker.25h8
30
    robot_tests.broker.ztv
31 32 33 34 35 36 37
    robot_tests.broker.etender
    robot_tests.broker.newtend
    robot_tests.broker.privatmarket
    robot_tests.broker.prom
    robot_tests.broker.publicbid
    robot_tests.broker.publicportal
    robot_tests.broker.smarttender
38
    robot_tests.broker.uatenders
39
    robot_tests.broker.ubiz
40
    robot_tests.broker.zakpro
41
    robot_tests.broker.proztorg
42
    robot_tests.broker.uub
43
    robot_tests.broker.aps
44
    robot_tests.broker.kapitalist
xxx authored
45
    robot_tests.broker.pzo
kosaniak authored
46
    robot_tests.broker.tendersallbiz
ivanka12 authored
47
    robot_tests.broker.upetem
ivanka12 authored
48
    robot_tests.broker.ukrtender
qa-user-1 authored
49
    robot_tests.broker.playtender
qa-user-1 authored
50
    robot_tests.broker.avi
Taras Kozlovskyi authored
51 52

interpreter = python_interpreter
53 54 55 56 57 58 59 60 61 62
# The following piece of code changes the default output format of Munch
# for Munch-to-str conversion and for generation of so-called repr.
#
# As a result, Robot Framework records pretty human-readable (YAML) data in its
# log files instead of ugly piles of Munch(data=Munch(foo=Munch(...))).
#
# Original idea: https://github.com/Infinidat/munch/blob/2.0.4/README.md#serialization
initialization =
    from munch import Munch
    Munch.__str__ = lambda self: Munch.toYAML(self, allow_unicode=True,
63
                                              default_flow_style=False).decode('utf-8')
64
    Munch.__repr__ = Munch.__str__
Taras Kozlovskyi authored
65
66
[remotes]
selurvedu authored
67 68
gh = git://github.com/
gh_push = git@github.com:
69
Taras Kozlovskyi authored
70
[sources]
kosaniak authored
71
barbecue                         = git ${remotes:gh}openprocurement/barbecue.git
72
openprocurement_client           = git ${remotes:gh}openprocurement/openprocurement.client.python.git  branch=upstream
kosaniak authored
73 74 75
robot_tests.broker.alltenders    = git ${remotes:gh}openprocurement/robot_tests.broker.alltenders.git
robot_tests.broker.aladdin       = git ${remotes:gh}openprocurement/robot_tests.broker.aladdin.git
robot_tests.broker.dzo           = git ${remotes:gh}openprocurement/robot_tests.broker.dzo.git
kosaniak authored
76
robot_tests.broker.izitrade      = git ${remotes:gh}openprocurement/robot_tests.broker.izitrade.git
kosaniak authored
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
robot_tests.broker.25h8          = git ${remotes:gh}openprocurement/robot_tests.broker.25h8.git
robot_tests.broker.ztv           = git ${remotes:gh}openprocurement/robot_tests.broker.ztv.git
robot_tests.broker.etender       = git ${remotes:gh}openprocurement/robot_tests.broker.etender.git
robot_tests.broker.newtend       = git ${remotes:gh}openprocurement/robot_tests.broker.newtend.git
robot_tests.broker.privatmarket  = git ${remotes:gh}openprocurement/robot_tests.broker.privatmarket.git
robot_tests.broker.prom          = git ${remotes:gh}openprocurement/robot_tests.broker.prom.git
robot_tests.broker.publicbid     = git ${remotes:gh}openprocurement/robot_tests.broker.publicbid.git
robot_tests.broker.publicportal  = git ${remotes:gh}openprocurement/robot_tests.broker.publicportal.git
robot_tests.broker.smarttender   = git ${remotes:gh}openprocurement/robot_tests.broker.smarttender.git
robot_tests.broker.tendersallbiz = git ${remotes:gh}openprocurement/robot_tests.broker.tendersallbiz.git
robot_tests.broker.uatenders     = git ${remotes:gh}openprocurement/robot_tests.broker.uatenders.git
robot_tests.broker.ubiz          = git ${remotes:gh}openprocurement/robot_tests.broker.ubiz.git
robot_tests.broker.zakpro        = git ${remotes:gh}openprocurement/robot_tests.broker.zakpro.git
robot_tests.broker.proztorg      = git ${remotes:gh}openprocurement/robot_tests.broker.proztorg.git
robot_tests.broker.uub           = git ${remotes:gh}openprocurement/robot_tests.broker.uub.git
robot_tests.broker.aps           = git ${remotes:gh}openprocurement/robot_tests.broker.aps.git
robot_tests.broker.kapitalist    = git ${remotes:gh}openprocurement/robot_tests.broker.kapitalist.git
ivanka12 authored
94
robot_tests.broker.pzo           = git ${remotes:gh}ProzorroUKR/robot_tests.broker.pzo.git
ivanka12 authored
95
robot_tests.broker.upetem        = git ${remotes:gh}openprocurement/robot_tests.broker.upetem.git
ivanka12 authored
96
robot_tests.broker.ukrtender     = git ${remotes:gh}ProzorroUKR/robot_tests.broker.ukrtender.git
qa-user-1 authored
97
robot_tests.broker.playtender    = git ${remotes:gh}ProzorroUKR/robot_tests.broker.playtender.git
qa-user-1 authored
98
robot_tests.broker.avi           = git ${remotes:gh}ProzorroUKR/robot_tests.broker.avi.git
99 100

[versions]
101
Faker = 0.7.7
102
mr.developer = 1.34
103 104
restkit = 4.2.2.op1
rfc6266 = 0.0.6.op1
105
robotframework = 3.0.0
106 107
robotframework-debuglibrary = 0.8
robotframework-lint = 0.7
108
robotframework-selenium2library = 1.8.0
109
setuptools = 33.1.1
110 111
zc.buildout = 2.5.3
zc.recipe.egg = 2.0.3
Dmitriy Belyaev authored
112 113
cryptography = 2.3.1
pyOpenSSL = 18.0.0