diff options
author | kpayson64 <kpayson@google.com> | 2017-03-10 15:35:55 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-10 15:35:55 -0800 |
commit | 32f32ea0b2249b03514fbc1c4fb4604440bef22b (patch) | |
tree | b74b6693798a51bd9f37b21c0ea79b6d53990c2e /src/python | |
parent | 4a8694fb3160c6525245c998842d727b339f2546 (diff) | |
parent | 78354300bfa7ff66d7ecc1c847fde22e932b7388 (diff) |
Merge pull request #9990 from kpayson64/fill_in_fields
Add package details to grpcio/grpcio-tools
Diffstat (limited to 'src/python')
-rw-r--r-- | src/python/grpcio_health_checking/setup.py | 4 | ||||
-rw-r--r-- | src/python/grpcio_reflection/setup.py | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/python/grpcio_health_checking/setup.py b/src/python/grpcio_health_checking/setup.py index 52ee98a2d5..17bb3ab616 100644 --- a/src/python/grpcio_health_checking/setup.py +++ b/src/python/grpcio_health_checking/setup.py @@ -59,6 +59,10 @@ COMMAND_CLASS = { setuptools.setup( name='grpcio-health-checking', version=grpc_version.VERSION, + description='Standard Health Checking Service for gRPC', + author='The gRPC Authors', + author_email='grpc-io@googlegroups.com', + url='http://www.grpc.io', license='3-clause BSD', package_dir=PACKAGE_DIRECTORIES, packages=setuptools.find_packages('.'), diff --git a/src/python/grpcio_reflection/setup.py b/src/python/grpcio_reflection/setup.py index e85092db57..e6cf54745e 100644 --- a/src/python/grpcio_reflection/setup.py +++ b/src/python/grpcio_reflection/setup.py @@ -60,6 +60,10 @@ setuptools.setup( name='grpcio-reflection', version=grpc_version.VERSION, license='3-clause BSD', + description='Standard Protobuf Reflection Service for gRPC', + author='The gRPC Authors', + author_email='grpc-io@googlegroups.com', + url='http://www.grpc.io', package_dir=PACKAGE_DIRECTORIES, packages=setuptools.find_packages('.'), install_requires=INSTALL_REQUIRES, |