blob: 17f787e827feec062b79e3c84d910c7ac65a1fca [file] [log] [blame]
Mohammed Naser8f469a82022-03-14 18:17:42 -04001import yaml
2from pbr.version import VersionInfo
3
4GALAXY_YML = {
5 'namespace': 'vexxhost',
6 'name': 'atmosphere',
7 'version': VersionInfo('ansible-collection-atmosphere').release_string(),
8 'readme': 'README.md',
9 'authors': [
10 "Mohammed Naser <mnaser@vexxhost.com>",
11 ],
12 'dependencies': {
13 'ansible.posix': '1.3.0',
14 'ansible.utils': '2.5.2',
15 'community.crypto': '2.2.3',
16 'community.general': '4.5.0',
17 'kubernetes.core': '2.2.3',
18 'openstack.cloud': '1.7.0',
19 },
20 'build_ignore': [
21 '.tox',
22 '.vscode',
23 'doc',
24 ],
25}
26
27with open('galaxy.yml', 'w') as f:
28 yaml.dump(GALAXY_YML, f, default_flow_style=False)