-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpyproject.toml
38 lines (33 loc) · 862 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
[project]
name = "sshconf"
authors = [
{name = "Søren A D", email = "soren@hamisoke.com"},
]
dependencies = []
license = {file = "LICENSE"}
dynamic = ["version", "description"]
classifiers = [
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries',
]
requires-python = ">=3.5"
readme = "README.md"
keywords = [
'ssh', 'config'
]
[project.urls]
homepage = "/~https://github.com/sorend/sshconf"
[project.optional-dependencies]
test = [
"tox",
"tox-gh-actions",
]
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.sdist]
exclude = [".gitignore", ".github", ".ci", "codecov.yml", "Makefile"]
[tool.pytest.ini_options]
addopts = "-v --cov-fail-under=60 --cov=sshconf"