Skip to main content

Install binaries to the same place Python would install scripts.

Project description

# `install_binaries` - install executable programs in bin/

`install_binaries` is a tool to help you create wrappers around
executable files. It ensures that they're installed in a reasonable
directory, and that they have their +x bit set. It should work fine
with old versions of pip and setuptools, and with Python 2.7 and up.
It should work with both `sdist` and `bdist_wheel` packages.

To use it, you have to do two things. First, you need to add two lines
to your `setup.py`:

```
setup(
name="my_cool_app",
...
setup_requires=['install_binaries'],
install_binaries=['my-binary', 'build/other-one'],
)
```

This will install both `my-binary` and `other-one` to
`.../my-virtualenv/bin` when your package is installed.

Second, you need to make sure your binary is included in your
`MANIFEST.in` file. So that might look like:

```
include requirements.txt
include VERSION
include my-binary
include build/other-one
```

If it's left out, it won't be included in the package that `python
setup.py sdist` creates.

## Known limitations

If your package gets installed as an egg, by using `easy_install` or
`setup.py install`, the `install_binaries` code never gets called, so we
have no chance to install the binaries. There may be a way around this,
but I haven't found it. `install_binaries` attempts to warn the user in
this situation.

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

install_binaries-0.4.1.tar.gz (3.7 kB view details)

Uploaded Source

File details

Details for the file install_binaries-0.4.1.tar.gz.

File metadata

File hashes

Hashes for install_binaries-0.4.1.tar.gz
Algorithm Hash digest
SHA256 5c2e58b554fe33c253f85bb4e7564b063f478bbc5f22116a69149faa31a84a6f
MD5 25747960a8d8773f53d42d9229bd164b
BLAKE2b-256 db5c391a40d92d335f05f2a3200ccdd60c1fab24724ef9b4ad8cfedb5388f2f9

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