-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
168 lines (153 loc) · 4.73 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
[tool.poetry]
name = "couchformation"
description = "Couchbase Cloud Automation"
version = "4.0.0"
readme = "README.md"
authors = ["Michael Minichino <[email protected]>"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Database",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
]
keywords = ["couchbase", "devops", "automation"]
packages = [
{ include = "couchformation" }
]
include = [
{ path = "couchformation/data/*.yaml", format = ["sdist", "wheel"] }
]
[tool.poetry.urls]
"Homepage" = "https://github.com/couchbaselabs/couch-formation-core"
"Changelog" = "https://github.com/couchbaselabs/couch-formation-core/blob/main/CHANGELOG.md"
[tool.poetry.scripts]
cloudmgr = "couchformation.cli.cloudmgr:main"
dbdump = "couchformation.cli.dbdump:main"
[[tool.poetry.source]]
name = "pypi-public"
url = "https://pypi.org/simple/"
[tool.poetry.dependencies]
python = ">=3.8,<4"
attrs = ">=23.1.0"
boto3 = ">=1.34.17"
botocore = ">=1.34.17"
cryptography = ">=42.0.7"
dnspython = ">=2.1.0"
google-api-core = ">=2.4.0"
google-api-python-client = ">=2.34.0"
google-auth = ">=2.3.3"
google-auth-httplib2 = ">=0.1.0"
googleapis-common-protos = ">=1.54.0"
google-cloud = ">=0.34.0"
google-cloud-compute = ">=1.6.1"
google-cloud-storage = ">=2.10.0"
google-cloud-dns = ">=0.35.0"
google-cloud-network-management = ">=1.5.4"
google-cloud-resource-manager = ">=1.12.5"
Jinja2 = ">=3.0.0"
passlib = ">=1.7.4"
pycryptodome = ">=3.20.0"
pytz = ">=2021.3"
pyvmomi = ">=8.0.0.1.1"
requests = ">=2.31.0"
urllib3 = ">=1.26.16"
azure-common = ">=1.1.28"
azure-core = ">=1.29.6"
azure-mgmt-resource = ">=23.1.1"
azure-identity = ">=1.12.0"
azure-mgmt-network = ">=25.3.0"
azure-mgmt-compute = ">=31.0.0"
azure-mgmt-core = ">=1.4.0"
azure-mgmt-dns = ">=8.1.0"
azure-mgmt-privatedns = ">=1.1.0"
ply = ">=3.11"
sqlite-utils = ">=3.11"
docker = ">=6.1.3"
paramiko = ">=3.4.0"
overrides = ">=7.4.0"
PyYAML = { version = "!=6.0.0,!=5.4.0,!=5.4.1" }
rsa = ">=4.9"
pywinrm = ">=0.4.3"
aiohttp = ">=3.9.3"
pyhostprep = ">=1.0.57"
psutil = ">=5.9.5"
six = ">=1.16.0"
libcapella = ">=1.0.18"
[tool.poetry.group.test.dependencies]
pytest = ">=5.0.0"
pytest-asyncio = ">=0.20.1"
pytest-rerunfailures = ">=10.0"
pytest-order = ">=1.2.0"
[tool.poetry.group.dev.dependencies]
bumpversion = "^0.6.0"
poetry-core = ">=1.9.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "session"
asyncio_mode = "auto"
addopts = "-rE --no-header -v -p no:warnings"
log_file = "pytest.log"
log_file_level = "DEBUG"
pythonpath = [
".",
"tests"
]
testpaths = [
"tests",
]
python_classes = [
"Test*"
]
python_files = [
"test_[0-9]*.py"
]
markers = [
"cf_aws: marks a test as an AWS test",
"cf_gcp: marks a test as a GCP test",
"cf_azure: marks a test as a Azure test",
"cf_docker: marks a test as a Docker test",
"cf_capella: marks a test as a Capella test",
"cf_columnar: marks a test as a Columnar test",
"cf_windows: marks a test as a Windows safe test",
"cf_posix: marks a test as a macOS or Linux safe test",
"cf_cli: marks a test as a CLI simulation test"
]
[tool.tox]
requires = ["tox>=4.19"]
env_list = ["py313", "py312", "py38", "win312", "win38"]
no_package = true
[tool.tox.env_run_base]
skip_install = true
allowlist_externals = ["poetry"]
[tool.tox.env.py38]
description = "Posix 3.8 full test"
env_python = "python3.8"
commands_pre = [["poetry", "env", "use", "3.8"], ["poetry", "install"]]
commands = [["poetry", "run", "pytest", "-m", "cf_posix"]]
[tool.tox.env.py312]
description = "Posix 3.12 full test"
env_python = "python3.12"
commands_pre = [["poetry", "env", "use", "3.12"], ["poetry", "install"]]
commands = [["poetry", "run", "pytest", "-m", "cf_posix"]]
[tool.tox.env.py313]
description = "Posix 3.13 full test"
env_python = "python3.13"
commands_pre = [["poetry", "env", "use", "3.13"], ["poetry", "install"]]
commands = [["poetry", "run", "pytest", "-m", "cf_posix"]]
[tool.tox.env.win38]
description = "Windows 3.8 full test"
env_python = "python38"
commands_pre = [["poetry", "env", "remove", "38"], ["poetry", "env", "use", "38"], ["poetry", "install"]]
commands = [["poetry", "run", "pytest", "-m", "cf_windows"]]
[tool.tox.env.win312]
description = "Windows 3.12 full test"
env_python = "python312"
commands_pre = [["poetry", "env", "remove", "312"], ["poetry", "env", "use", "312"], ["poetry", "install"]]
commands = [["poetry", "run", "pytest", "-m", "cf_windows"]]