-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
73 lines (65 loc) · 1.5 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
[tool.poetry]
name = "py-dtn7"
version = "0.3.0b1"
description = ""
authors = [
"Lukas Holst <[email protected]>",
"Thomas Schmitt <[email protected]>",
]
license = "AGPL-3.0-or-later"
readme = "README.md"
homepage = "https://github.com/teschmitt/py-dtn7"
repository = "https://github.com/teschmitt/py-dtn7"
keywords = []
classifiers = [
"Environment :: Console",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Topic :: Software Development :: Libraries",
"Topic :: Communications",
"Intended Audience :: Developers",
"Natural Language :: English",
]
include = ["LICENSE"]
[tool.poetry.dependencies]
python = "^3.7"
cbor2 = "^5.4.3"
requests = "^2.27.1"
websocket-client = "^1.3.2"
[tool.poetry.group.dev.dependencies]
black = "^22.3.0"
coverage = { extras = ["toml"], version = "^6.4.1" }
flake8 = "^4.0.1"
isort = "^5.10.1"
pdoc = "^12.0.2"
pre-commit = "^2.18.1"
pytest = "^7.1.2"
toml = "^0.10.2"
mock = "^5.0.2"
[tool.black]
include = '\.pyi?$'
line-length = 100
target-version = ["py37", "py38", "py39", "py310"]
preview = true
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = 'black'
multi_line_output = 3
[tool.coverage.run]
omit = ["*/tests/*", ".*", "*/site-packages/*"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"