Giter Site home page Giter Site logo

rules_wheel's Introduction

rules_wheel

Bazel rule for building a python wheel.

This aims to simplify the wheel-building process by taking over the need to write and maintain extra setup.py files and then building via genrule. Instead, you can use this rule to wrap that whole process for you.

You can check out the Skydoc-generated wheel docs here.

Unfortunately Skydoc doesn't currently support the newer doc label parameter, so check out the Skylark source in wheel.bzl for more info.

Installing and Usage

Currently requires having setuptools and wheel installed locally (will work on bringing that into the rule itself).

To use the wheel rule, you will need to add the following into your WORKSPACE file:

http_archive(
    name = "io_bazel_rules_wheel",
    strip_prefix = "rules_wheel-<version>",
    urls = ["https://github.com/georgeliaw/rules_wheel/archive/<version>.tar.gz"],
    sha256 = "<checksum>"
)

To load the rules, either do so in your BUILD files or simply add to tools/build_rules/prelude_bazel:

load("@io_bazel_rules_wheel//wheel:wheel.bzl", "bdist_wheel")

NOTE: using prelude_bazel requires an empty tools/build_rules/BUILD file.

You can now create wheels by doing something similar to the below:

bdist_wheel(
    name = "sample_wheel",
    srcs = glob(
        ["**"],
        exclude = ["**/*.pyc"],
    ),
    include_package_data = True
)

rules_wheel's People

Contributors

georgeliaw avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.