Skip to content

Commit f73f818

Browse files
SrinidhiSrinidhi2000
authored andcommitted
Resolve Chakra Setup Issue
1 parent 3109b13 commit f73f818

2 files changed

Lines changed: 6 additions & 9 deletions

File tree

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
[build-system]
2-
requires = ["setuptools", "setuptools-grpc"]
2+
requires = [ "setuptools>=61",
3+
"wheel",
4+
"setuptools-grpc",
5+
"grpcio-tools"]
36
build-backend = "setuptools.build_meta"
47

58
[project]

setup.py

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,11 @@
1-
from distutils.command.build import build
2-
1+
from setuptools.command.build import build
32
from setuptools import setup
43

54

65
class 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

0 commit comments

Comments
 (0)