Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
leroyguillaume committed Feb 5, 2022
1 parent 3106506 commit 6607732
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ jobs:
- name: Install dependencies
run: pip3 install -r requirements.txt
- name: Lint
run: pylint src
run: pylint markdown_table_generator
- name: Run tests
run: pytest
3 changes: 3 additions & 0 deletions markdown_table_generator/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
"""Markdown table generator"""

from .markdown_table_generator import *
File renamed without changes.
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,14 @@

setup(
name="markdown_table_generator",
version="1.0.1",
version="1.0.2",
author="Guillaume Leroy",
author_email="pro.guillaume.leroy@gmail.com",
description="Library to generate Markdown table",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/leroyguillaume/py-markdown-table-generator",
packages=find_packages(where="src"),
package_dir={"": "src"},
packages=["markdown_table_generator"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
Expand Down
2 changes: 1 addition & 1 deletion sh/pre-commit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
set -e

pytest
pylint src
pylint markdown_table_generator

0 comments on commit 6607732

Please sign in to comment.