Skip to content

Commit

Permalink
fix ctrl+c shutdown error
Browse files Browse the repository at this point in the history
  • Loading branch information
wj-Mcat committed Jul 17, 2022
1 parent 8618541 commit 07939a1
Show file tree
Hide file tree
Showing 7 changed files with 340 additions and 107 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
include LICENSE README.md VERSION
recursive-include src *.py
recursive-include src **/*.pyi
recursive-exclude src *_test.py
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ module = [
"wechaty_puppet.*",
"pytest.*",
"grpclib.*",
"lxml.*"
"lxml.*",
"apscheduler.*"
]
ignore_missing_imports = true

Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,9 @@ def get_install_requires() -> List[str]:
long_description_content_type='text/markdown',
license='Apache-2.0',
url='https://github.com/wechaty/python-wechaty',
packages=setuptools.find_packages('src'),
package_dir={'': 'src'},
packages=["wechaty"],
package_data={"wechaty": ["py.typed", "**/*.pyi"]},
package_dir={'wechaty': 'src/wechaty'},
install_requires=get_install_requires(),
classifiers=[
'Programming Language :: Python :: 3.7',
Expand Down
Loading

0 comments on commit 07939a1

Please sign in to comment.