-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* follow latest grpc proto annotations & rename * deprecate merge-rpoto.sh (#46) * install third party proto files * 0.20.5 * install proto by github actions * 0.20.6 * add cache for pypi install * 0.20.7
- Loading branch information
Showing
10 changed files
with
67 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,9 +76,6 @@ t.* | |
.idea | ||
target/ | ||
|
||
# Python | ||
python/src/ | ||
|
||
# csharp | ||
*.nupkg | ||
.vs/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
chatie-grpc/ | ||
src/wechaty_grpc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
betterproto[compiler]>=2.0.0b1 | ||
betterproto[compiler]>=2.0.0b2 | ||
grpcio-tools | ||
pyee | ||
pylint_quotes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,15 +35,15 @@ def setup() -> None: | |
version = versioning(pkg['version']) | ||
|
||
setuptools.setup( | ||
name='chatie-grpc', | ||
name='wechaty-grpc', | ||
version=version, | ||
author='Huan LI (李卓桓)', | ||
author_email='[email protected]', | ||
description='gRPC for Chatie', | ||
description='Wechaty Puppet Service gRPC API', | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
license='Apache-2.0', | ||
url='https://github.com/chatie/grpc', | ||
url='https://github.com/wechaty/grpc', | ||
packages=setuptools.find_packages("src"), | ||
package_dir={'': 'src'}, | ||
classifiers=[ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,4 +15,4 @@ | |
|
||
def test_smoke_testing() -> None: | ||
""" wechaty """ | ||
assert pytest, 'should True' | ||
assert pytest, 'To-be added' |