Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
.. image:: https://img.shields.io/pypi/v/setuptools-grpc :target: https://pypi.org/project/setuptools-grpc/ :alt: PyPI - Version
.. image:: https://img.shields.io/pypi/l/setuptools-grpc :target: https://pypi.org/project/setuptools-grpc/ :alt: PyPI - License
.. image:: https://img.shields.io/pypi/pyversions/setuptools-grpc :target: https://pypi.org/project/setuptools-grpc/ :alt: PyPI - Python Version
.. image:: https://img.shields.io/github/actions/workflow/status/CZ-NIC/setuptools-grpc/test.yml :target: https://github.com/CZ-NIC/setuptools-grpc/ :alt: GitHub Workflow Status (with event)
Plugin for setuptools to compile protobuf and gRPC service files to python modules.
This package provides build_grpc
command for setuptools <https://pypi.org/project/setuptools/>
_.
Its purpose is to build gRPC modules during build
step of setuptools
packaging.
This is not a command line script.
Direct invocation of setup.py
(such as python setup.py build_grpc
) has been deprecated
and will be removed in future version of setuptools
.
If you'd like to have CLI for building gRPC modules, use
grpcio-tools <https://pypi.org/project/grpcio-tools/>
_
directly (that's what this package uses under the hood).
After installing that package, you can learn about its options
by running python -m grpc_tools.protoc --help
.
You probably shouldn't install this package directly.
Instead, you should add it to the build-system.requires
in pyproject.toml
.
See Configuration
_.
Command build_grpc
provides following options:
proto_files
: Newline separated list of glob patterns matching protobuf files to be compiled.
Paths are relative to the current directory.
**
can be used to match any files and zero or more directories.
Default value is empty list.
grpc_files
: Newline separated list of glob patterns matching grpc service files to be compiled.
Paths are relative to the current directory.
**
can be used to match any files and zero or more directories.
Default value is empty list.
proto_path
: Path to root directory with protobuf files.
This path is passed through -I
option to grpc_tools.protoc
.
Default is .
(current directory).
output_path
: Path to root directory for generated python modules.
This path is passed through --python_out
or --grpc_python_out
option to grpc_tools.protoc
.
Default is .
(current directory).
You have to specify setuptools-grpc
as part of build backend requirements.
This follows specification introduced in PEP 518 <https://peps.python.org/pep-0518/>
.
You can read more about it in setuptools docs <https://setuptools.pypa.io/en/latest/build_meta.html>
.
.. code-block:: toml
[build-system] requires = ["setuptools", "setuptools-grpc"] build-backend = "setuptools.build_meta"
Next, you need to actually add build_grpc
as subcommand of the build
command.
This needs to be done in setup.py
, but if setuptools
ever allows for declarative
config, we'll be happy to support it.
.. code-block:: python
from setuptools import setup from setuptools.command.build import build
class custom_build(build): sub_commands = [ ('build_grpc', None), ] + build.sub_commands
setup(cmdclass={'build': custom_build})
Finally, you need to configure setuptools_grpc
itself.
This can be done in setup.py
, but we recommend declarative config in setup.cfg
.
Depending on your project structure, you may not need some of the options below.
You'll always need to specify at least proto_files
or grpc_files
,
otherwise setuptools_grpc
won't do anything.
.. code-block:: ini
[build_grpc] proto_files = src//*.proto grpc_files = src//*_grpc.proto proto_path = ./src output_path = ./out
FAQs
Plugin for setuptools and grpc / protobuf python module build
We found that setuptools-grpc demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.