-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
35 lines (29 loc) · 836 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
[tool.poetry]
name = "paranoid-openvpn"
version = "1.0.0"
description = "Hardening script for OpenVPN client profiles"
authors = ["Brian Turek <[email protected]>"]
license = "MIT"
homepage = "https://github.com/Caligatio/paranoid-openvpn"
repository = "https://github.com/Caligatio/paranoid-openvpn"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.6.1"
typing-extensions = { version = "^3.7.4.3", python = "<3.8" }
[tool.poetry.dev-dependencies]
black = "^20.8b1"
pre-commit = "^2.11.1"
mypy = "^0.812"
pytest = "^6.2.2"
pytest-mock = "^3.5.1"
pytest-cov = "^2.11.1"
bump2version = "^1.0.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
paranoid_openvpn = 'paranoid_openvpn.cli:cli'
[tool.black]
line-length = 120
[tool.isort]
line_length = 120