|
1 | | -[tool.poetry] |
2 | | -name = "labthings" |
3 | | -version = "1.2.1" |
4 | | -description = "Python implementation of LabThings, based on the Flask microframework" |
5 | | -readme = "README.md" |
6 | | -repository = "https://github.com/labthings/python-labthings/" |
7 | | -authors = ["Joel Collins <joel@jtcollins.net>"] |
8 | | -classifiers = [ |
9 | | - "Topic :: System :: Hardware", |
10 | | - "Topic :: Software Development :: Libraries :: Application Frameworks", |
11 | | - "Topic :: Internet :: WWW/HTTP :: WSGI" |
12 | | -] |
13 | | -include = ["src/labthings/py.typed"] |
14 | | - |
15 | | -[tool.poetry.dependencies] |
16 | | -python = "^3.6" |
17 | | -Flask = "^1.1.1" |
18 | | -marshmallow = "^3.4.0" |
19 | | -webargs = "^6.0.0" |
20 | | -apispec = ">=3.2,<5.0" |
21 | | -flask-cors = "^3.0.8" |
22 | | -zeroconf = ">=0.24.5,<0.29.0" |
23 | | -apispec_webframeworks = "^0.5.2" |
24 | | - |
25 | | -[tool.poetry.dev-dependencies] |
26 | | -pytest = "^6.0" |
27 | | -black = {version = "^20.8b1",allow-prereleases = true} |
28 | | -pytest-cov = "^2.10.1" |
29 | | -numpy = "^1.19.1" |
30 | | -jsonschema = "^3.2.0" |
31 | | -pylint = "^2.6.0" |
32 | | -sphinx = "^3.2.1" |
33 | | -sphinx-autoapi = "^1.4.0" |
34 | | -sphinx-rtd-theme = "^0.5.0" |
35 | | -mypy = "^0.790" |
36 | | - |
37 | | -[tool.black] |
38 | | -exclude = '(\.eggs|\.git|\.venv|node_modules/)' |
39 | | - |
40 | | -[tool.isort] |
41 | | -multi_line_output = 3 |
42 | | -include_trailing_comma = true |
43 | | -force_grid_wrap = 0 |
44 | | -use_parentheses = true |
45 | | -ensure_newline_before_comments = true |
46 | | -line_length = 88 |
47 | | - |
48 | | -[tool.pylint.'MESSAGES CONTROL'] |
49 | | -disable = "fixme,C,R" |
50 | | -max-line-length = 88 |
51 | | - |
52 | | -[tool.pylint.'MASTER'] |
53 | | -ignore = "marshmallow_jsonschema" |
54 | | - |
55 | | -[build-system] |
56 | | -requires = ["poetry-core>=1.0.0"] |
57 | | -build-backend = "poetry.core.masonry.api" |
| 1 | +[tool.poetry] |
| 2 | +name = "labthings" |
| 3 | +version = "1.2.2" |
| 4 | +description = "Python implementation of LabThings, based on the Flask microframework" |
| 5 | +readme = "README.md" |
| 6 | +repository = "https://github.com/labthings/python-labthings/" |
| 7 | +authors = ["Joel Collins <joel@jtcollins.net>"] |
| 8 | +classifiers = [ |
| 9 | + "Topic :: System :: Hardware", |
| 10 | + "Topic :: Software Development :: Libraries :: Application Frameworks", |
| 11 | + "Topic :: Internet :: WWW/HTTP :: WSGI" |
| 12 | +] |
| 13 | +include = ["src/labthings/py.typed"] |
| 14 | + |
| 15 | +[tool.poetry.dependencies] |
| 16 | +python = "^3.6" |
| 17 | +Flask = "^1.1.1" |
| 18 | +marshmallow = "^3.4.0" |
| 19 | +webargs = "^6.0.0" |
| 20 | +apispec = ">=3.2,<5.0" |
| 21 | +flask-cors = "^3.0.8" |
| 22 | +zeroconf = ">=0.24.5,<0.29.0" |
| 23 | +apispec_webframeworks = "^0.5.2" |
| 24 | + |
| 25 | +[tool.poetry.dev-dependencies] |
| 26 | +pytest = "^6.0" |
| 27 | +black = {version = "^20.8b1",allow-prereleases = true} |
| 28 | +pytest-cov = "^2.10.1" |
| 29 | +jsonschema = "^3.2.0" |
| 30 | +pylint = "^2.6.0" |
| 31 | +sphinx = "^3.2.1" |
| 32 | +sphinx-autoapi = "^1.4.0" |
| 33 | +sphinx-rtd-theme = "^0.5.0" |
| 34 | +mypy = "^0.790" |
| 35 | + |
| 36 | +[tool.black] |
| 37 | +exclude = '(\.eggs|\.git|\.venv|node_modules/)' |
| 38 | + |
| 39 | +[tool.isort] |
| 40 | +multi_line_output = 3 |
| 41 | +include_trailing_comma = true |
| 42 | +force_grid_wrap = 0 |
| 43 | +use_parentheses = true |
| 44 | +ensure_newline_before_comments = true |
| 45 | +line_length = 88 |
| 46 | + |
| 47 | +[tool.pylint.'MESSAGES CONTROL'] |
| 48 | +disable = "fixme,C,R" |
| 49 | +max-line-length = 88 |
| 50 | + |
| 51 | +[tool.pylint.'MASTER'] |
| 52 | +ignore = "marshmallow_jsonschema" |
| 53 | + |
| 54 | +[build-system] |
| 55 | +requires = ["poetry-core>=1.0.0"] |
| 56 | +build-backend = "poetry.core.masonry.api" |
0 commit comments