-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
60 lines (45 loc) · 1.29 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.nitpick]
style = "https://raw.githubusercontent.com/wemake-services/wemake-python-styleguide/master/styles/nitpick-style-wemake.toml"
[tool.poetry]
name = "odoo-backup-db-cli"
description = "Tool to create full backup of odoo database"
version = "1.0.0"
license = "AGPL3"
authors = [
"VentorTech OU <hello@ventor.tech>"
]
readme = "README.md"
repository = "https://github.com/ventor-tech/odoo-backup-db-cli"
keywords = ["odoo", "backup", "filestore", "cli"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.scripts]
poetry = "poetry.console:run"
odoo-backup-db-cli = "odoo_backup_db_cli.cli:main"
[tool.poetry.dependencies]
python = ">=3.6,<3.9"
python-dateutil = "^2.8"
pysftp = "^0.2.9"
yaspin = "^1.2.0"
importlib-metadata = "1.7.0"
[tool.poetry.dev-dependencies]
wemake-python-styleguide = "^0.14"
flake8-pytest-style = "^1.3"
nitpick = "^0.23"
safety = "^1.9"
pytest = "^5.4"
pytest-cov = "^2.10"
mock = "^4.0.3"
pytest-randomly = "^3.4"
sphinx = "^3.3"
sphinx-autodoc-typehints = "^1.11"
doc8 = "^0.8"
m2r2 = "^0.2"
tomlkit = "^0.7"