github-org-manager 0.2.0__tar.gz → 0.2.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.
- {github_org_manager-0.2.0 → github_org_manager-0.2.1}/PKG-INFO +12 -1
- {github_org_manager-0.2.0 → github_org_manager-0.2.1}/pyproject.toml +14 -2
- {github_org_manager-0.2.0 → github_org_manager-0.2.1}/LICENSE.txt +0 -0
- {github_org_manager-0.2.0 → github_org_manager-0.2.1}/LICENSES/Apache-2.0.txt +0 -0
- {github_org_manager-0.2.0 → github_org_manager-0.2.1}/LICENSES/CC-BY-4.0.txt +0 -0
- {github_org_manager-0.2.0 → github_org_manager-0.2.1}/LICENSES/CC0-1.0.txt +0 -0
- {github_org_manager-0.2.0 → github_org_manager-0.2.1}/LICENSES/MIT.txt +0 -0
- {github_org_manager-0.2.0 → github_org_manager-0.2.1}/README.md +0 -0
- {github_org_manager-0.2.0 → github_org_manager-0.2.1}/gh_org_mgr/__init__.py +0 -0
- {github_org_manager-0.2.0 → github_org_manager-0.2.1}/gh_org_mgr/_config.py +0 -0
- {github_org_manager-0.2.0 → github_org_manager-0.2.1}/gh_org_mgr/_gh_api.py +0 -0
- {github_org_manager-0.2.0 → github_org_manager-0.2.1}/gh_org_mgr/_gh_org.py +0 -0
- {github_org_manager-0.2.0 → github_org_manager-0.2.1}/gh_org_mgr/manage.py +0 -0
|
@@ -1,16 +1,27 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: github-org-manager
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: Manage a GitHub Organization, its teams, repository permissions, and more
|
|
5
|
+
Home-page: https://github.com/OpenRailAssociation/openrail-org-config
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Keywords: github,github-management,permissions,access-control
|
|
5
8
|
Author: Max Mehl
|
|
6
9
|
Author-email: max.mehl@deutschebahn.com
|
|
7
10
|
Requires-Python: >=3.10,<4.0
|
|
11
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
12
|
+
Classifier: Environment :: Console
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Intended Audience :: System Administrators
|
|
15
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
8
16
|
Classifier: Programming Language :: Python :: 3
|
|
9
17
|
Classifier: Programming Language :: Python :: 3.10
|
|
10
18
|
Classifier: Programming Language :: Python :: 3.11
|
|
11
19
|
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
+
Classifier: Topic :: Software Development :: Version Control :: Git
|
|
21
|
+
Classifier: Topic :: Utilities
|
|
12
22
|
Requires-Dist: pygithub (>=2.3.0,<3.0.0)
|
|
13
23
|
Requires-Dist: pyyaml (>=6.0.1,<7.0.0)
|
|
24
|
+
Project-URL: Repository, https://github.com/OpenRailAssociation/openrail-org-config
|
|
14
25
|
Description-Content-Type: text/markdown
|
|
15
26
|
|
|
16
27
|
<!--
|
|
@@ -4,11 +4,23 @@
|
|
|
4
4
|
|
|
5
5
|
[tool.poetry]
|
|
6
6
|
name = "github-org-manager"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.1"
|
|
8
8
|
description = "Manage a GitHub Organization, its teams, repository permissions, and more"
|
|
9
9
|
authors = ["Max Mehl <max.mehl@deutschebahn.com>"]
|
|
10
10
|
readme = "README.md"
|
|
11
|
-
|
|
11
|
+
license = "Apache-2.0"
|
|
12
|
+
repository = "https://github.com/OpenRailAssociation/openrail-org-config"
|
|
13
|
+
keywords = ["github", "github-management", "permissions", "access-control"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 5 - Production/Stable",
|
|
16
|
+
"Environment :: Console",
|
|
17
|
+
"Topic :: Software Development :: Version Control :: Git",
|
|
18
|
+
"Topic :: Utilities",
|
|
19
|
+
"Intended Audience :: Developers",
|
|
20
|
+
"Intended Audience :: System Administrators",
|
|
21
|
+
"License :: OSI Approved :: Apache Software License",
|
|
22
|
+
]
|
|
23
|
+
packages = [{ include = "gh_org_mgr" }]
|
|
12
24
|
|
|
13
25
|
[tool.poetry.scripts]
|
|
14
26
|
gh-org-mgr = 'gh_org_mgr.manage:main'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|