make-deb icon indicating copy to clipboard operation
make-deb copied to clipboard

Tool for building debian packages from your python projects

Results 19 make-deb issues
Sort by recently updated
recently updated
newest added

I'm on OSX ``` $ make-deb error in sample setup command: package_data must be a dictionary mapping package names to lists of wildcard patterns Traceback (most recent call last): File...

Here are the changes I needed to make to run this in a Python3 venv. Feel free to reject if you want to stay Python 2.

Fixes https://github.com/nylas/make-deb/issues/13

dh-virtualenv has a bunch of command line flags that it can take: http://dh-virtualenv.readthedocs.io/en/latest/usage.html It would be nice if make-deb could support those.

Hi there, this tool looks fine. But, many python packages name could be with upper case letters. So, if you create control, and changelog files, you must lower case all...

and add options for customizability ``` $ make-deb --help Usage: make-deb [OPTIONS] Options: --python /path/to/python Path to Python executable to use (e.g.: /usr/bin/python or /usr/bin/python3 --python-version [2.x|3.4|3.5] Python version --test...

If the latest git commit message has unicode in it, this line https://github.com/nylas/make-deb/blob/master/make_deb/__init__.py#L95 will throw a UnicodeDecode error.

[dh-virtualenv says](https://github.com/spotify/dh-virtualenv/issues/164) that the `data_files` directive inside setup.py is not the correct place to specify files that will reside outside of the python source root (e.g. /etc/foo/config.ini, /etc/systemd/custm.service), and that...

This patch adds a `.links` file to the `debian` folder, to set up symlinks for scripts and entry_points described in `setup.py`. In addition, it alters the method for parsing `setup.py`...