-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
52 lines (45 loc) · 1.25 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
[tool.poetry]
name = "volttron-lib-base-historian"
version = "0.2.0-rc"
description = "A base library with extension points for using with the VOLTTRON platform."
authors = ["VOLTTRON Team <[email protected]>"]
license = "Apache License 2.0"
readme = "README.md"
repository = "https://github.com/eclipse-volttron/volttron-lib-base-historian"
homepage = "https://github.com/eclipse-volttron/volttron-lib-base-historian"
keywords = []
packages = [ { include = "historian", from = "src" }, { include = "historian", from = "tests" } ]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
volttron = ">=10.0.3a9,<11.0"
ply = "^3.11"
[tool.poetry.group.dev.dependencies]
# formatting, quality, tests
pytest = "^6.2.5"
mock = "^4.0.3"
pre-commit = "^2.17.0"
yapf = "^0.32.0"
toml = "^0.10.2"
isort = "^5.10.1"
safety = "^1.10.3"
mypy = "^0.942"
coverage = "^6.3.2"
pytest-cov = "^3.0.0"
Sphinx = "^6.0.0"
sphinx-rtd-theme = "^1.2.0"
volttron-testing = "^0.4.0rc3"
[tool.yapfignore]
ignore_patterns = [
".venv/**",
".pytest_cache/**",
"dist/**",
"docs/**"
]
[tool.yapf]
based_on_style = "pep8"
spaces_before_comment = 4
column_limit = 99
split_before_logical_operator = true
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.core.masonry.api"