-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (39 loc) · 1.2 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
[tool.poetry]
name = "mreschke-serverbackups"
version = "1.0.7"
license = "MIT"
authors = ["Matthew Reschke <[email protected]>"]
description = "Config driven server backups that feel like a simple backup.py script"
readme = "README.md"
homepage = "http://github.com/mreschke/server-backups"
documentation = "http://github.com/mreschke/server-backups"
repository = "http://github.com/mreschke/server-backups"
classifiers = [
"License :: OSI Approved :: MIT License",
"Topic :: System :: Archiving :: Backup",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Operating System :: Unix",
"Environment :: Console",
]
# Extra files to include in build
include = ["LICENSE"]
# This poetry package path
packages = [
{ include = "mreschke/serverbackups" },
]
[tool.poetry.dependencies]
python = ">=3.5,<4.0"
click = "7.1.*"
colored = "1.4.*"
prettyprinter = "0.18.*"
PyYAML = "5.*"
[tool.poetry.dev-dependencies]
flake8 = "3.9.*"
[tool.poetry.scripts]
serverbackups = "mreschke.serverbackups.init:cli"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"