-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (60 loc) · 1.56 KB
/
Copy pathpyproject.toml
File metadata and controls
68 lines (60 loc) · 1.56 KB
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
66
67
68
[project]
name = "assimilate"
version = "0.2"
description = "Front end for BorgBackup version 2."
readme = "README.rst"
keywords = [
"assimilate", "emborg", "borg", "borgbackup",
"borgmatic", "vorta", "backups"
]
authors = [
{name = "Ken Kundert"},
{email = "assimilate@nurdletech.com"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
]
requires-python = ">=3.9"
dependencies = [
"appdirs",
"arrow>=1.3",
"docopt",
"inform>=1.36",
"nestedtext",
"ntlog",
"quantiphy",
"requests",
"voluptuous",
]
[project.optional-dependencies]
avendesora = [
'avendesora',
]
[project.scripts]
assimilate = "assimilate.main:main"
[project.urls]
homepage = "https://assimilate.readthedocs.io"
documentation = "https://assimilate.readthedocs.io"
repository = "https://github.com/kenkundert/assimilate"
changelog = "https://github.com/KenKundert/assimilate/blob/master/doc/releases.rst"
[build-system]
requires = ["flit_core >=2"]
build-backend = "flit_core.buildapi"
[tool.pytest.ini_options]
addopts = "--tb=short"
[tool.ruff]
exclude = [".tox", "doc"]
[tool.ruff.lint]
select = ["F"]
ignore = []
[tool.ruff.lint.per-file-ignores]
"assimilate/__init__.py" = ["F401"]
"assimilate/assimilate.py" = ["F401"]
"assimilate/utilities.py" = ["F401"]