-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
54 lines (47 loc) · 1.4 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
[tool.poetry]
name = "volttron-lib-auth"
version = "0.1.0"
description = "Base Authentication Library for VOLTTRON"
authors = ["C. Allwardt <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/eclipse-volttron/volttron-lib-auth"
homepage = "https://github.com/eclipse-volttron/volttron-lib-auth"
keywords = []
packages = [
{ include = "volttron", from = "src" },
{ include = "authfixtures", from = "tests" }
]
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Intended Audience :: Developers",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: Apache Software License"
]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
volttron = { path="../volttron-core", develop = true}
[tool.poetry.group.dev.dependencies]
# formatting, quality, tests
volttron-test-utils = { path="../volttron-test-utils", develop = true}
[build-system]
requires = ["poetry-core>=1.2.2"]
build-backend = "poetry.core.masonry.api"
[tool.yapfignore]
ignore_patterns = [
".venv/**",
".pytest_cache/**",
"dist/**",
"docs/**"
]
[tool.yapf]
based_on_style = "pep8"
spaces_before_comment = 4
column_limit = 120
split_before_logical_operator = true
[tool.mypy]
show_error_context = true
pretty = true
show_column_numbers = true