File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11[build-system ]
2- requires = [" setuptools" , " setuptools-grpc" ]
2+ requires = [ " setuptools>=61" ,
3+ " wheel" ,
4+ " setuptools-grpc" ,
5+ " grpcio-tools" ]
36build-backend = " setuptools.build_meta"
47
58[project ]
Original file line number Diff line number Diff line change 1- from distutils .command .build import build
2-
1+ from setuptools .command .build import build
32from setuptools import setup
43
54
65class build_grpc (build ):
76 """
87 Custom build class to include gRPC build commands.
9-
10- This class modifies the default build process to include additional sub-commands
11- necessary for building gRPC components.
12-
13- Attributes
14- sub_commands (list): List of sub-commands to be executed during the build process.
8+ sub_commands (list): List of sub-commands to be executed during the build process.
159 """
1610
1711 sub_commands = [("build_grpc" , None )] + build .sub_commands
You can’t perform that action at this time.
0 commit comments