click-contrib / click-man

Automate generation of man pages for python click applications :star:
MIT License
163 stars 35 forks source link

Use unclear in non setuptools project #43

Open alerque opened 4 years ago

alerque commented 4 years ago

All the examples assume –and some quick hacking suggests the code also assumes– that all projects use setuptools and are laid out with it in mind. My project uses GNU Autotools (because it does much more than just Python), but one of the pieces is a Python CLI app that uses Click. It should be possible to parse this Click app as well as any other, but nothing in the documentation suggests how to wire it so that it knows where to start.

innir commented 3 years ago

Same here, with a project that is using flit as build system.

heitorPB commented 2 years ago

It would be nice to also support pyproject.toml based projects.