14 """Setup module for CSDS in gRPC Python."""
21 _PACKAGE_PATH = os.path.realpath(os.path.dirname(__file__))
22 _README_PATH = os.path.join(_PACKAGE_PATH,
'README.rst')
25 os.chdir(os.path.dirname(os.path.abspath(__file__)))
31 'Development Status :: 5 - Production/Stable',
32 'Programming Language :: Python',
33 'Programming Language :: Python :: 3',
34 'License :: OSI Approved :: Apache Software License',
37 PACKAGE_DIRECTORIES = {
44 'grpcio>={version}'.
format(version=grpc_version.VERSION),
46 SETUP_REQUIRES = INSTALL_REQUIRES
48 setuptools.setup(name=
'grpcio-csds',
49 version=grpc_version.VERSION,
50 license=
'Apache License 2.0',
51 description=
'xDS configuration dump library',
52 long_description=
open(_README_PATH,
'r').
read(),
53 author=
'The gRPC Authors',
54 author_email=
'grpc-io@googlegroups.com',
55 classifiers=CLASSIFIERS,
56 url=
'https://grpc.io',
57 package_dir=PACKAGE_DIRECTORIES,
58 packages=setuptools.find_packages(
'.'),
59 python_requires=
'>=3.6',
60 install_requires=INSTALL_REQUIRES,
61 setup_requires=SETUP_REQUIRES)