Metadata-Version: 2.1
Name: bazeler
Version: 0.0.9
Summary: Bazel helper package
Home-page: https://github.com/iabaldwin/bazeler
Author: Ian Baldwin
Author-email: ian@iabaldwin.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: jinja2
Requires-Dist: colorama

# Bazel helper

Repositories are defined by the `required.json` and `provides.json` sentinel
files in each repository. For example, in `common/Sophus`:

```
{
  "dependencies": [
    "eigen"
  ]
}
```

This requires the `eigen` dependency, which means either: 

* A repository exists in the parent directory that contains a `provides.json`
  file, or:
* A buildfile exists for the given architecture (for natively installed
  libraries)

This is designed to be used in conjunction with Google's git-repo:
[git-repo](https://code.google.com/archive/p/git-repo/)


