Skip to content

Commit

Permalink
Merge pull request #49 from mlec1/master
Browse files Browse the repository at this point in the history
fix(pip): Fix pip installation
  • Loading branch information
santoru authored May 17, 2024
2 parents 620e018 + 07b108c commit 7e7ede9
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
23 changes: 23 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# IDE
# Pycharm
.idea

# Python
## Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from setuptools import setup

PACKAGE_NAME = "shcheck"
VERSION = "1.6.6"
VERSION = "1.6.7"

with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
Expand All @@ -43,7 +43,7 @@ def parse_requirements(filename):
long_description_content_type="text/markdown",
url="https://github.com/santoru/shcheck",
scripts=[
"shcheck.py",
"shcheck/shcheck.py",
],
python_requires='>=3'
)

0 comments on commit 7e7ede9

Please sign in to comment.