forked from labthings/python-labthings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (49 loc) · 1.41 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
49
50
51
52
53
54
55
56
[tool.poetry]
name = "labthings"
version = "1.3.2"
description = "Python implementation of LabThings, based on the Flask microframework"
readme = "README.md"
repository = "https://github.com/labthings/python-labthings/"
authors = ["Joel Collins <joel@jtcollins.net>"]
classifiers = [
"Topic :: System :: Hardware",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Internet :: WWW/HTTP :: WSGI"
]
include = ["src/labthings/py.typed"]
[tool.poetry.dependencies]
python = "^3.6"
Flask = "^1.1.1"
marshmallow = "^3.4.0"
webargs = ">=6,<9"
apispec = {version = ">=3.2,<5.0", extras = ["yaml", "validation"]}
flask-cors = "^3.0.8"
zeroconf = ">=0.24.5,<0.34.0"
apispec_webframeworks = "^0.5.2"
[tool.poetry.dev-dependencies]
pytest = "^6.2"
black = {version = "^20.8b1",allow-prereleases = true}
pytest-cov = "^2.11.1"
jsonschema = "^3.2.0"
pylint = "^2.10.2"
sphinx = "^4.1.1"
sphinx-autoapi = "^1.8.1"
sphinx-rtd-theme = "^0.5.2"
mypy = "^0.812"
[tool.black]
exclude = '(\.eggs|\.git|\.venv|node_modules/)'
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 88
[tool.pylint.'MESSAGES CONTROL']
disable = "fixme,C,R"
max-line-length = 88
[tool.pylint.'MASTER']
ignore = "marshmallow_jsonschema"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"