File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 66
66
git config user.name github-actions
67
67
git config user.email [email protected]
68
68
git add .
69
- git commit -m "Update results"
69
+ git commit --allow-empty - m "Update results"
70
70
git push
71
71
72
72
publish_to_pypi :
Original file line number Diff line number Diff line change 3
3
from stat import ST_MODE
4
4
from distutils import log
5
5
from setuptools import setup
6
+ from setuptools import find_packages
6
7
from setuptools .command .install import install
7
8
8
- VERSION_STRING = "1.0.1 "
9
+ VERSION_STRING = "1.0.2 "
9
10
10
11
PACKAGE_NAME = "homework_checker"
11
12
@@ -40,7 +41,6 @@ def run(self):
40
41
41
42
setup (
42
43
name = PACKAGE_NAME ,
43
- packages = [PACKAGE_NAME ],
44
44
version = VERSION_STRING ,
45
45
install_requires = INSTALL_REQUIRES ,
46
46
setup_requires = ["nose>=1.0" ],
@@ -62,6 +62,7 @@ def run(self):
62
62
long_description = open ("README.md" ).read (),
63
63
long_description_content_type = 'text/markdown' ,
64
64
test_suite = "tests" ,
65
+ packages = find_packages (),
65
66
entry_points = {
66
67
"console_scripts" : [
67
68
"check_homework = homework_checker.check_homework:main" ,
You can’t perform that action at this time.
0 commit comments