-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
85 lines (76 loc) · 2.05 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "volttron-lib-web"
version = "0.2.0-rc"
description = "The volttron-lib-web library extends the platform by exposing a web based REST api and allows extension web agents to register with the platform."
authors = ["VOLTTRON Team <[email protected]>"]
license = "2022"
readme = "README.md"
repository = "https://github.com/eclipse-volttron/volttron-lib-web"
homepage = "https://volttron.readthedocs.io"
keywords = []
packages = [ {include="volttron", from = "src" } ]
[tool.poetry.dependencies]
jinja2-cli = ">=0.7.0"
passlib = "^1.7.4"
PyJWT = "==1.7.1"
python = ">=3.8,<4.0"
treelib = ">=1.6.1"
volttron = ">=10.0.2rc0,<11.0"
werkzeug = ">=2.1.2"
ws4py = ">=0.5.1"
requests = "^2.28.1"
argon2-cffi = "^21.3.0"
[tool.poetry.dev-dependencies]
# formatting, quality, tests
autoflake = ">=1.4"
deepdiff = ">=5.8.1"
isort = ">=5.7.0"
mock = "^4.0.3"
mypy = ">=0.812"
pytest = ">=6.2.2"
pytest-cov = "^3.0.0"
pytest-randomly = ">=3.5.0"
pytest-sugar = ">=0.9.4"
pytest-xdist = ">=2.2.0"
types-toml = ">=0.10.1"
volttron-testing = '>=0.4.0rc0'
# tasks
duty = ">=0.6.0"
git-changelog = ">=0.5.0"
httpx = ">=0.16.1"
toml = ">=0.10.2"
# flake8 plugins
#darglint = ">=1.5.8"
#flake8 = ">=3.7.0"
#flake8-bandit = ">=2.1.2"
#flake8-black = ">=0.2.1"
#flake8-bugbear = ">=20.11.1"
#flake8-builtins = ">=1.5.3"
#flake8-comprehensions = ">=3.3.1"
#flake8-docstrings = ">=1.5.0"
#flake8-pytest-style = ">=1.3.0"
#flake8-string-format = ">=0.3.0"
#flake8-tidy-imports = ">=4.2.1"
#flake8-variables-names = ">=0.0.4"
#pep8-naming = ">=0.11.1"
#pydocstyle = ">=6.1.1"
#wps-light = ">=0.15.2"
# docs
#mkdocs = ">=1.2.2"
#mkdocs-coverage = ">=0.2.1"
#mkdocs-macros-plugin = ">=0.5.0"
#mkdocs-material = ">=6.2.7"
#mkdocstrings = ">=0.16.2"
pre-commit = "^2.17.0"
[tool.isort]
line_length = 120
not_skip = "__init__.py"
multi_line_output = 3
force_single_line = false
balanced_wrapping = true
default_section = "THIRDPARTY"
known_first_party = "[[ python_package_import_name ]]"
include_trailing_comma = true