[08:52:53] <dfee> is [bdist_wheel] python_tag=py36 ... the right way to build a wheel only for python3.6+?
[08:53:28] <dfee> i want to make sure i understand these docs: https://wheel.readthedocs.io/en/stable/#defining-the-python-version
[16:10:43] <collinanderson> pip 10 broke the way I've been including html files in my internal library. what's the proper way to include non-py files in setup.py?
[16:17:07] <Siecje> collinanderson: How are you currently doing it? You can use package-data or MANIFEST.in
[16:19:44] <collinanderson> Siecje: using `data_files`. :) here's my ancient setup.py (written by a colleague), nearly unchanged since 2010.
[16:20:09] <collinanderson> ohh, and the weird thing is my package files are in the root directory, rather than a separate directory :/
[16:46:38] <collinanderson> ohh, i forgot to send the link. https://gist.github.com/collinanderson/47d6e15c8b01c052753cae0f73726520
[16:46:53] <collinanderson> i think i'll use MANIFEST.in. what's the difference between graft and recursive-include?
[16:50:03] <collinanderson> i think i'm going to go with graft, and then global-exclude __pycache__, global-exclude *.py[co]
[21:10:10] <redj> Hi, how can I exclude files from a package? I have MANIFEST.in and exclude_package_data without success
[21:10:25] <ngoldbaum> don't list them in MANIFEST.in?