Skip to content

Commit

Permalink
Prepare pylint-guidelines-checker for pypi release (#5845)
Browse files Browse the repository at this point in the history
* ensure conditions all work properly in the case of a previous error
* prepare pylint guidelines checker for release on pypi
  • Loading branch information
scbedd authored Mar 28, 2023
1 parent f6e7ccd commit c3a3b2e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tools/pylint-extensions/pylint-guidelines-checker/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
recursive-include tests *.py
include *.md
include __init__.py
7 changes: 7 additions & 0 deletions tools/pylint-extensions/pylint-guidelines-checker/setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
from setuptools import setup


with open('README.md', encoding='utf-8') as f:
readme = f.read()

setup(
name="pylint-guidelines-checker",
version="0.0.8",
Expand All @@ -9,4 +13,7 @@
author='Microsoft Corporation',
author_email='[email protected]',
py_modules=['pylint_guidelines_checker'],
long_description=readme,
long_description_content_type='text/markdown',
python_requires=">=3.7",
)

0 comments on commit c3a3b2e

Please sign in to comment.