-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (49 loc) · 938 Bytes
/
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
[tool.poetry]
name = "nordvpn-indicator"
version = "0.1.0"
description = "NordVPN Linux desktop indicator"
authors = ["Alberto Cardellini"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "nordvpn_indicator" },
{ include = "nordvpn" },
]
[tool.poetry.dependencies]
python = "^3.9"
pycairo = "^1.27.0"
PyGObject = "^3.50.0"
tomli = "^2.2.1"
[tool.poetry.dev-dependencies]
pytest = "^7.4.4"
isort = "^5.13.2"
black = "^23.12.1"
flake8 = "^6.1.0"
mypy = "^1.14"
[tool.poetry.scripts]
nordvpn_indicator = 'nordvpn_indicator:main'
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
multi_line_output=3
include_trailing_comma="True"
force_grid_wrap=0
use_parentheses="True"
line_length=88
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"