github-org-manager 0.1.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.
@@ -1,17 +1,27 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: github-org-manager
3
- Version: 0.1.0
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)
14
- Requires-Dist: tqdm (>=4.66.2,<5.0.0)
24
+ Project-URL: Repository, https://github.com/OpenRailAssociation/openrail-org-config
15
25
  Description-Content-Type: text/markdown
16
26
 
17
27
  <!--
@@ -22,7 +32,10 @@ SPDX-License-Identifier: Apache-2.0
22
32
 
23
33
  # GitHub Organization Manager
24
34
 
35
+ [![Test suites](https://github.com/OpenRailAssociation/github-org-manager/actions/workflows/test.yaml/badge.svg)](https://github.com/OpenRailAssociation/github-org-manager/actions/workflows/test.yaml)
25
36
  [![REUSE status](https://api.reuse.software/badge/github.com/OpenRailAssociation/github-org-manager)](https://api.reuse.software/info/github.com/OpenRailAssociation/github-org-manager)
37
+ [![The latest version of GitHub Org Manager can be found on PyPI.](https://img.shields.io/pypi/v/github-org-manager.svg)](https://pypi.org/project/github-org-manager/)
38
+ [![Information on what versions of Python GitHub Org Manager supports can be found on PyPI.](https://img.shields.io/pypi/pyversions/github-org-manager.svg)](https://pypi.org/project/github-org-manager/)
26
39
 
27
40
  A lightweight tool that helps with managing a GitHub organization, its members, teams, repository permissions and more.
28
41
 
@@ -6,7 +6,10 @@ SPDX-License-Identifier: Apache-2.0
6
6
 
7
7
  # GitHub Organization Manager
8
8
 
9
+ [![Test suites](https://github.com/OpenRailAssociation/github-org-manager/actions/workflows/test.yaml/badge.svg)](https://github.com/OpenRailAssociation/github-org-manager/actions/workflows/test.yaml)
9
10
  [![REUSE status](https://api.reuse.software/badge/github.com/OpenRailAssociation/github-org-manager)](https://api.reuse.software/info/github.com/OpenRailAssociation/github-org-manager)
11
+ [![The latest version of GitHub Org Manager can be found on PyPI.](https://img.shields.io/pypi/v/github-org-manager.svg)](https://pypi.org/project/github-org-manager/)
12
+ [![Information on what versions of Python GitHub Org Manager supports can be found on PyPI.](https://img.shields.io/pypi/pyversions/github-org-manager.svg)](https://pypi.org/project/github-org-manager/)
10
13
 
11
14
  A lightweight tool that helps with managing a GitHub organization, its members, teams, repository permissions and more.
12
15
 
@@ -67,7 +67,7 @@ def _find_matching_files(directory: str, pattern: str, only_one: bool = False) -
67
67
  logging.error(
68
68
  "No configuration file found for '%s' in '%s'. The program might not work as expected!",
69
69
  pattern,
70
- directory
70
+ directory,
71
71
  )
72
72
 
73
73
  return matching_files
@@ -4,11 +4,23 @@
4
4
 
5
5
  [tool.poetry]
6
6
  name = "github-org-manager"
7
- version = "0.1.0"
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
- packages = [{include = "gh_org_mgr"}]
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'
@@ -17,7 +29,6 @@ gh-org-mgr = 'gh_org_mgr.manage:main'
17
29
  python = "^3.10"
18
30
  pygithub = "^2.3.0"
19
31
  pyyaml = "^6.0.1"
20
- tqdm = "^4.66.2"
21
32
 
22
33
  [tool.poetry.group.dev.dependencies]
23
34
  black = "^24.3.0"
@@ -25,7 +36,6 @@ isort = "^5.13.2"
25
36
  mypy = "^1.9.0"
26
37
  pylint = "^3.1.0"
27
38
  types-pyyaml = "^6.0.12.20240311"
28
- types-tqdm = "^4.66.0.20240106"
29
39
 
30
40
  [build-system]
31
41
  requires = ["poetry-core"]
@@ -42,3 +52,7 @@ line-length = 100
42
52
  # MYPY settings
43
53
  [tool.mypy]
44
54
  files = ["gh_org_mgr/*.py"]
55
+
56
+ # Pylint
57
+ [tool.pylint.'MESSAGES CONTROL']
58
+ disable = "fixme"