-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
59 lines (52 loc) · 1.62 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
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "crestic"
version = "1.0.0"
authors = [
{name = "Nils Werner", email = "nils.werner@gmail.com"}
]
description = "Configurable restic"
license = {file = "LICENSE"}
readme = "README.md"
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: POSIX :: BSD",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: System :: Archiving :: Backup",
]
requires-python = ">=3.6"
[project.urls]
Homepage = "https://github.com/nils-werner/crestic/"
CI = "https://app.circleci.com/pipelines/github/nils-werner/crestic"
[project.optional-dependencies]
tests = [
"pytest",
"pytest-cov",
"pytest-mock",
"pytest-mypy",
"pytest-pycodestyle",
]
[project.scripts]
crestic = "crestic:cli"
[tool.setuptools]
py-modules = ["crestic"]
include-package-data = false
[tool.pytest.ini_options]
addopts = "--doctest-modules --cov-report term-missing --cov crestic --pycodestyle --mypy -Werror"
[tool.pycodestyle]
max-line-length = "127"