-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
65 lines (57 loc) · 1.12 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
[build-system]
requires = ["poetry"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "sedge"
version = "2.2.6"
authors = ["Grahame Bowland <[email protected]>"]
description = "Template and share OpenSSH ssh_config(5) files."
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: System Administrators",
"Topic :: System :: Networking",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
]
[tool.poetry.scripts]
sedge = 'sedge.cli:cli'
[tool.poetry.dependencies]
python = ">=3.7,<4"
click = "*"
requests = "*"
[tool.poetry.dev-dependencies]
click = "*"
requests = "*"
tox = "*"
pytest = "*"
[tool.poetry.group.dev.dependencies]
poetryup = "^0.12.7"
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py39
isolated_build = True
[testenv]
deps=pytest
commands=pytest
"""
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| tests/.*/setup.py
)/
'''