Metadata-Version: 2.1
Name: gh_codeowners
Version: 0.0.2
Summary: A small package to retrieve CODEOWNERS files from Github, because the PyGithub library can't retrieve it
Author-email: Benjamin Floyd <benjamin.floyd253@gmail.com>
Project-URL: Homepage, https://github.com/pwna5aurus/gh_codeowners
Project-URL: Bug Tracker, https://github.com/pwna5aurus/gh_codeowners
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

#### Python-based Github CODEOWNERS retriever ####
Note:  requires the GITHUB_TOKEN environment var set with a valid token.
Suggested use:

from codeowners_lib import codeowners
co = codeowners
assignees = co.retrieve(<repo name, ie 'some repo name'>)

and you get a list of CODEOWNERS for ticket assignment/etc

