Skip to main content

build_commands

Project description

build_commands

build status code coverage

This package provides common setuptools command utilities if you need to initialize your package with npm, bower or gulp commands.

Usage

You are supposed to create in your own package a Yeoman like project folder (for example: your_package/templates).

Add the build_commands dependency to your pretend your_package.

Update your setup.cfg adding the following:

[aliases]
npm = npm -i your_package/templates
bower = bower
gulp = gulp -i your_package/templates -g gulpfile.babel.js

If you are using bower you can add a .bowerrc file to your package root (where your setup.cfg file lives) with the following (see http://bower.io/docs/config/#cwd):

{
  "directory": "bower_components",
  "cwd": "./your_package/templates/"
}

And update your setup.py entry points distutils commands:

entry_points="""\
[distutils.commands]
npm = build_commands:NpmCommand
bower = build_commands:BowerCommand
gulp = build_commands:GulpCommand
""",

This way once installed your your_package you can initialize your Yeoman project with:

$ python setup.py install/develop
$ python setup.py npm
$ python setup.py bower
$ python setup.py gulp

And all your frontend stuff will be processed automatically (SASS, minification, uglyfication, etc).

Authors

0.0.1 (2015-08-12)

  • Initial version

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

build_commands-0.0.1.tar.gz (5.4 kB view details)

Uploaded Source

File details

Details for the file build_commands-0.0.1.tar.gz.

File metadata

File hashes

Hashes for build_commands-0.0.1.tar.gz
Algorithm Hash digest
SHA256 9421d2794336fa1196e67a92c8b44cb9e6e6d703259301b1a14c1e0956f94003
MD5 839f48a39431a4472725ddf041246351
BLAKE2b-256 f06d3ac2e1d4c153cde4a547bb5d6490994555ccf87451ee7eae0a0f60d16a3a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page