forked from adamcharnock/mate3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (32 loc) · 1.06 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
[tool.dephell.main]
from = {format = "poetry", path = "pyproject.toml"}
to = {format = "setuppy", path = "setup.py"}
[tool.poetry]
name = "mate3"
readme = "README.md"
version = "0.6.2"
description = "Outback Mate3s Python Library"
authors = ["Adam Charnock <adam@adamcharnock.com>", "kodonnell <kodonnell@users.noreply.github.com>"]
homepage = "https://github.com/adamcharnock/mate3/"
repository = "https://github.com/adamcharnock/mate3/"
[tool.poetry.dependencies]
python = "^3.7"
pymodbus = "^2.4"
loguru = "^0.5.3"
fixedint = "^0.1.6"
[tool.poetry.dev-dependencies]
black = {version = "^18.3-alpha.0", allow-prereleases = true}
dephell = ">=0.7.6"
pytest = "^6.2.1"
pytest-dictsdiff = "^0.5.8"
pytest-subtests = "^0.4.0"
pytest-console-scripts = "^1.1.0"
[tool.poetry.scripts]
mate3 = 'mate3.main:main'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.pytest.ini_options]
# Ignore the below error as recommended by pytest-subtests
filterwarnings = [ "ignore:A private pytest class or function was used." ]
script_launch_mode = "subprocess"