因此,我将一些我拥有的代码打包为适当的“pypi-compliant”python 包。
问题是,我的 python 库依赖于发行版级库中的一些 python 类——特别是 cherokee。
通过安装
aptitude install cherokee
或者
pacman -S cherokee
或者
emerge cherokee
当然,这取决于您使用的发行版。
在我安装的 cherokee 库中,我可以找到
[root@li280-195 ~]# find / -name "Config.py"
/usr/share/cherokee/admin/CTK/CTK/Config.py
所以问题是,我应该如何在我的 python 库setup.py
中指出我所依赖的Config.py
?