ansible-docsmith 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ansible-docsmith
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: DocSmith for Ansible: automating role documentation (using argument_specs.yml)
|
|
5
|
+
Keywords: ansible,documentation,yaml,cli,automation
|
|
6
|
+
Author: foundata GmbH, Andreas Haerter
|
|
7
|
+
Author-email: Andreas Haerter <ah@foundata.com>
|
|
8
|
+
License-Expression: GPL-3.0-or-later
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
11
|
+
Classifier: Environment :: Console
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Intended Audience :: System Administrators
|
|
14
|
+
Classifier: Topic :: Documentation
|
|
15
|
+
Classifier: Topic :: Software Development :: Documentation
|
|
16
|
+
Classifier: Topic :: System :: Systems Administration
|
|
17
|
+
Classifier: Topic :: Utilities
|
|
18
|
+
Classifier: Programming Language :: Python :: 3
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
22
|
+
Maintainer: Andreas Haerter
|
|
23
|
+
Maintainer-email: Andreas Haerter <ah@foundata.com>
|
|
24
|
+
Requires-Python: >=3.11
|
|
25
|
+
Project-URL: Changelog, https://github.com/foundata/ansible-docsmith/CHANGELOG.md
|
|
26
|
+
Project-URL: Documentation, https://github.com/foundata/ansible-docsmith/README.md
|
|
27
|
+
Project-URL: Homepage, https://github.com/foundata/ansible-docsmith
|
|
28
|
+
Project-URL: Issues, https://github.com/foundata/ansible-docsmith/issues
|
|
29
|
+
Project-URL: Repository, https://github.com/foundata/ansible-docsmith.git
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "ansible-docsmith"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "DocSmith for Ansible: automating role documentation (using argument_specs.yml)"
|
|
5
|
+
keywords = ["ansible", "documentation", "yaml", "cli", "automation"]
|
|
6
|
+
license = "GPL-3.0-or-later"
|
|
7
|
+
license-files = ["LICENSES/*.txt"]
|
|
8
|
+
authors = [
|
|
9
|
+
{ name = "foundata GmbH" },
|
|
10
|
+
{ name = "Andreas Haerter", email = "ah@foundata.com" },
|
|
11
|
+
]
|
|
12
|
+
maintainers = [
|
|
13
|
+
{ name = "Andreas Haerter", email = "ah@foundata.com" },
|
|
14
|
+
]
|
|
15
|
+
requires-python = ">=3.11"
|
|
16
|
+
dependencies = []
|
|
17
|
+
|
|
18
|
+
classifiers = [
|
|
19
|
+
"Development Status :: 1 - Planning",
|
|
20
|
+
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
21
|
+
|
|
22
|
+
# Indication for whom the project is for
|
|
23
|
+
"Environment :: Console",
|
|
24
|
+
"Intended Audience :: Developers",
|
|
25
|
+
"Intended Audience :: System Administrators",
|
|
26
|
+
"Topic :: Documentation",
|
|
27
|
+
"Topic :: Software Development :: Documentation",
|
|
28
|
+
"Topic :: System :: Systems Administration",
|
|
29
|
+
"Topic :: Utilities",
|
|
30
|
+
|
|
31
|
+
# Supported Python versions
|
|
32
|
+
"Programming Language :: Python :: 3",
|
|
33
|
+
"Programming Language :: Python :: 3.11",
|
|
34
|
+
"Programming Language :: Python :: 3.12",
|
|
35
|
+
"Programming Language :: Python :: 3.13",
|
|
36
|
+
]
|
|
37
|
+
|
|
38
|
+
[project.urls]
|
|
39
|
+
Homepage = "https://github.com/foundata/ansible-docsmith"
|
|
40
|
+
Documentation = "https://github.com/foundata/ansible-docsmith/README.md"
|
|
41
|
+
Repository = "https://github.com/foundata/ansible-docsmith.git"
|
|
42
|
+
Issues = "https://github.com/foundata/ansible-docsmith/issues"
|
|
43
|
+
Changelog = "https://github.com/foundata/ansible-docsmith/CHANGELOG.md"
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
[build-system]
|
|
47
|
+
requires = ["uv_build>=0.8.3,<0.9.0"]
|
|
48
|
+
build-backend = "uv_build"
|