-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
42 lines (35 loc) · 1.1 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
[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"
[tool.poetry.dev-dependencies]
dephell = ">=0.7.6"
pytest = "^6.2.1"
pytest-dictsdiff = "^0.5.8"
pytest-subtests = "^0.4.0"
pytest-console-scripts = "^1.1.0"
openpyxl = "^3.0.5"
flake8 = "^3.8.4"
black = {version = "^20.8b1", allow-prereleases = true}
[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"
[tool.black]
line-length = 120