-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
90 lines (82 loc) · 2.12 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "myhoard"
authors = [
{ name="Aiven", email="opensource@aiven.io" },
{ name="Rauli Ikonen", email="rauli@aiven.io"},
]
description = "MyHoard is a daemon for creating, managing and restoring MySQL backups."
readme = "README.md"
requires-python = ">=3.9"
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Database :: Database Engines/Servers",
"Topic :: Software Development :: Libraries",
]
license = { text = "Apache License 2.0" }
dynamic = ["version"]
dependencies = [
"aiohttp",
"botocore",
"cryptography >= 0.8",
"httplib2",
"paramiko",
"PyMySQL >= 0.9.2",
"PySocks",
# rohmu is incompatible with latest version snappy 0.7.1
"python-snappy == 0.6.1",
"rohmu >= 1.1.2",
"sentry-sdk==1.14.0",
]
[project.optional-dependencies]
dev = [
"black==22.3.0",
"coverage",
"coveralls",
"flake8",
"httplib2",
"isort==5.12.0",
"mock",
"mypy",
"pre-commit",
"pylint-quotes",
"pylint>=2.4.3",
"PySocks",
"pytest",
"pytest-cov",
"pytest-mock",
"pytest-timeout",
"pytest-xdist",
"responses",
"time-machine",
"types-PyMySQL",
"types-requests",
]
[project.urls]
"Homepage" = "https://github.com/Aiven-Open/myhoard/"
"Bug Tracker" = "https://github.com/Aiven-Open/myhoard/issues"
[project.scripts]
myhoard = "myhoard.myhoard:main"
myhoard_mysql_env_update = "myhoard.update_mysql_environment:main"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "myhoard/version.py"
[tool.black]
line-length = 125
[tool.isort]
no_sections = true
force_alphabetical_sort = true
combine_as_imports = true
profile = "black"
skip_gitignore = true
line_length = 125