-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
52 lines (51 loc) · 1 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
#[tool.poetry]
#name = "volttron-utils"
#version = "0.3.2"
#description = "Utility classes and methods for VOLTTRON"
#authors = ["C. Allwardt <[email protected]>"]
#license = "Apache-2.0"
#packages = [
# { include = "volttron" }
#]
#homepage = "https://github.com/VOLTTRON/volttron-utils"
#repository = "https://github.com/VOLTTRON/volttron-utils"
#
#keywords = ["volttron"]
#
#[tool.poetry.dependencies]
#python = ">=3.6.2,<4.0"
#gevent = "20.6.1"
#greenlet = "0.4.16"
#watchdog-gevent = "^0.1.1"
#zmq = "^0.0.0"
#dateutils = "^0.6.7"
#tzlocal = "2.1"
#cryptography = "2.3"
#pyOpenSSL = "19.0.0"
#psutil = "^5.7.0"
#PyYAML = "^5.4.1"
#
#[tool.poetry.dev-dependencies]
#pytest = "^6.2.4"
#black = "^21.6b0"
#flake8 = "^3.9.2"
#pre-commit = "^2.14.1"
#
#[build-system]
#requires = ["poetry-core>=1.0.0"]
#build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/'''