Skip to content

Commit

Permalink
Change packages name in setup (#13)
Browse files Browse the repository at this point in the history
* Change packages name in setup

* Change version

* Allow empty wiki commit

* Add missing import
  • Loading branch information
niosus authored Feb 13, 2022
1 parent 3962ddf commit 97c63b2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
git config user.name github-actions
git config user.email [email protected]
git add .
git commit -m "Update results"
git commit --allow-empty -m "Update results"
git push
publish_to_pypi:
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
from stat import ST_MODE
from distutils import log
from setuptools import setup
from setuptools import find_packages
from setuptools.command.install import install

VERSION_STRING = "1.0.1"
VERSION_STRING = "1.0.2"

PACKAGE_NAME = "homework_checker"

Expand Down Expand Up @@ -40,7 +41,6 @@ def run(self):

setup(
name=PACKAGE_NAME,
packages=[PACKAGE_NAME],
version=VERSION_STRING,
install_requires=INSTALL_REQUIRES,
setup_requires=["nose>=1.0"],
Expand All @@ -62,6 +62,7 @@ def run(self):
long_description=open("README.md").read(),
long_description_content_type='text/markdown',
test_suite="tests",
packages=find_packages(),
entry_points={
"console_scripts": [
"check_homework = homework_checker.check_homework:main",
Expand Down

0 comments on commit 97c63b2

Please sign in to comment.