-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
61 lines (56 loc) · 1.52 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
[tool.poetry]
name = "blackbox-cli"
packages = [
{ include = "blackbox" }
]
version = "v2.4.0"
description = "Tool for automatic backups of databases"
authors = ["Leon Sandøy <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/lemonsaurus/blackbox"
repository = "https://github.com/lemonsaurus/blackbox"
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Topic :: Database",
"Topic :: System :: Archiving :: Backup"
]
exclude = ["tests", "tests.*"]
[tool.poetry.dependencies]
python = "^3.9"
pyyaml = "^5.3.1"
requests = "^2.25.1"
boto3 = "^1.16.51"
loguru = "^0.5.3"
jinja2 = "^3.1.2"
click = ">=7.1.2,<9.0.0"
dropbox = "^11.0.0"
pytelegrambotapi = "^3.7.7"
single-source = "^0.2.0"
stone = "^3.2.1"
[tool.poetry.dev-dependencies]
flake8 = "^3.9.2"
flake8-isort = "^4.0.0"
pytest = "*"
pytest-cov = "^2.11.1"
pytest-mock = "^3.5.1"
pytest-subprocess = "^1.0.1"
pytest-testdox = "^2.0.1"
poethepoet = "^0.10.0"
requests-mock = "^1.8.0"
win32-setctime = "^1.0.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
blackbox = "blackbox.cli:cli"
# Use 'poetry run poe <taskname>' to run these.
[tool.poe.tasks]
tests = "pytest --cov blackbox -vv --cov-report=term-missing ."
lint = "flake8 ."
isort = "isort ."
html = "pytest --cov blackbox --cov-report=html ."