-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
48 lines (42 loc) · 1.01 KB
/
pyproject.toml
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
[tool.poetry]
name = "reactive-robot"
version = "0.1.0-alpha.5"
description = "Fastest way to turn your robot workflows into event driven service."
authors = ["Yusuf Can Bayrak <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/yusufcanb/reactive-robot"
readme = 'README.md'
packages = [
{ include = "reactive_robot" },
]
[tool.poetry.dependencies]
python = "^3.6"
click = "^8.0.3"
colorlog = "^6.6.0"
importlib-metadata = "^4.8.2"
marshmallow = "^3.14.1"
minio = "^7.1.1"
pika = "^1.2.0"
paho-mqtt = "^1.6.1"
PyYAML = "^6.0"
[tool.poetry.dev-dependencies]
coverage = "^5.4"
pytest = "^6.2.2"
pytest-coverage = "^0.0"
tox = "^3.22.0"
black = "^20.8b1"
twine = "^3.3.0"
mkdocs = "^1.2.3"
robotframework = "^5.0"
robotframework-requests = "^0.9.2"
[tool.poetry.scripts]
reactive-robot = 'reactive_robot.cli:cli'
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"