Skip to content

Commit

Permalink
Initial readme and setup.py/cfg files
Browse files Browse the repository at this point in the history
  • Loading branch information
mshriver committed Jul 10, 2020
0 parents commit 56b2859
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Basic tooling for gathering specific metrics about GH prs.
18 changes: 18 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[metadata]
name = 'qe-pr-metrics'
description = 'tool for collecting metrics on PRs'
author = 'Mike Shriver'
author_email = '[email protected]'
url='https://gitlab.cee.redhat.com/mshriver/qe-pr-metrics'

[options]
zip_safe = False
include_pacakge_data = True
packages = find:
entry_points = file:entry_points.txt
setup_requires = setuptools_scm>=3.0.0
install_requires =
PyGithub
dynaconf>=3.0


8 changes: 8 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
from setuptools import setup

with open('README.md') as readme:
readme_text = readme_file.read()

setup(
use_scm_version=True,
long_description=readme_text,

0 comments on commit 56b2859

Please sign in to comment.