[19:39:56] <dmerejkowsky> Have you consider running `strip` on the .so generated when building a wheel ?
[19:40:24] <dmerejkowsky> Some people are complaining about having "big" packages when they use `pip` vs installing them via their package manager
[19:41:25] <dmerejkowsky> (see here: https://github.com/pypa/pip/issues/3938 )
[19:45:36] <hk3380> what's one place i should store the name of a CLI tool? i'll have to read it from setup.py and when creating argparse's ArgumentParser
[20:56:25] <pombreda> hk3380: if you used a command line library instead of a bare argparse, most would take care of this for you. That said it is easy to get : this is the filename of sys.argv[0]
[20:57:45] <pombreda> assuming you are using setuptools entry_points console_scripts : that script is the name of your CLI tool