forked from ni/systemlink-storeandforward-beacon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (30 loc) · 816 Bytes
/
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
[tool.poetry]
name = "systemlink-storeandforward-beacon"
version = "1.0"
description = "An example salt beacon for monitoring systemlink test monitor store and forward health"
authors = []
[tool.poetry.scripts]
systemlink-storeandforward-beacon = "systemlink-storeandforward-beacon.__main__:cli"
[tool.poetry.dependencies]
python = "^3.6.2"
salt = "^3004"
python-dateutil = "^2.8.2"
systemlink-sdk = "^21.1.0"
[tool.poetry.dev-dependencies]
# Lint
flake8 = ">=3.8.4"
flake8-docstrings = ">=1.5.0"
flake8-import-order = ">=0.18.1"
pep8-naming = ">=0.11.1"
black = ">=20.8b1"
# Test
pytest = ">=6.0"
[[tool.poetry.source]]
name = "NI PyPI"
url = "https://pypi.ni.systems"
default = true
[tool.black]
line-length = 100
[build-system]
requires = [ "poetry-core>=1.0.0" ]
build-backend = "poetry.core.masonry.api"