The setuptools_node package contains a number of useful setuptools extensions for working with Node.js, many useful web development tools can be found in the npm ecosystem.
In general custom setuptools command are used by registering the custom command
in the cmdclass argument to the setup() function
setup(cmdclass={ 'my_command': MyCommand })By default all paths are relative to the directory containing setup.py. Node
will be in the node directory and node modules in node_modules
--node-dirSpecify an alternate directory where node may be found--node-modules-dirSpecify an alternate directory for node modules
The InstallNode command is used to fetch a copy of node.js and install it
in the project directory. The download will be cached in the cache directory
to facilitate a quick reinstall.
--node-dist-urlSpecify the URL from which to fetch node--node-versionSpecify the version of node to fetch--cache-dirSpecify the directory in which to store the node download
setup.py:
from setuptools_node import InstallNode
setup(cmdclass={ 'install_node': InstallNode })Use:
user@host $ python setup.py install_nodeThe NpmInstall command is used to install modules from npm. By default
npm install is used, npm ci may be specified with --use-ci
--use-ciUsenpm cito install modules instead ofnpm install
setup.py:
from setuptools_node import NpmInstall
setup(cmdclass={ 'npm_install': NpmInstall })Use:
user@host $ python setup.py npm_install # or
user@host $ python setup.py npm_install --use-ciThe Gulp command runs the gulp build tool
--taskSpecify the task to run insteaed of the default. Multiple tasks may be specified as a comma separated list.
setup.py:
from setuptools_node import Gulp
setup(cmdclass={ 'gulp': Gulp })Use:
user@host $ python setup.py gulp # run default task
user@host $ python setup.py gulp --task foo # run the 'foo' task
user@host $ python setup.py gupl --task clean,foo # run 'clean' and 'foo' tasksThe GulpBuild command provides a version of build_py that executes gulp
before proceeding with the normal build_py process, this allows you to
build/transform static files for a web application before they are included
in the package built by build_py.
Node will be installed if it is not found, and modules will be installed/updated.
--taskSpecify the task to run insteaed of the default. Multiple tasks may be specified as a comma separated list.
Since you don't generally run build_py directly, you will need to add any
arguments to the setup.cfg:
[build_py]
task=myGulpTasksetup.py:
from setuptools_node import GulpBuild
setup(cmdclass={ 'build_py': GulpBuild })Use:
user@host $ python setup.py bdist_wheel