1

私はdjangoでクライアント用の小さなデスクトップアプリを書いていますが、使用したいミックスがありますが、アプリをインストールするたびにeasy_installをインストールしてからpipしてからmixin自体をインストールする必要はありません. mixin は "django-file-resubmit" です。一見 3 つのファイルしかないように見えますが、どこに隠しておくべきでしょうか? それともミックスインに依存しますか?私は潜在的なメンテナンスの問題を十分に認識しており、この場合は深刻ではありません。

ありがとう、

ロジャー

4

1 に答える 1

3

A requirements.txt file is the best way to deal with this, it's pretty much now the universal way of dealing with dependencies. If you're not going to be using pip however, just include it in your project's root under lib/ and add that directory to your Python path. That's how the old folks done it back in the day. ;-)

于 2013-02-19T02:09:06.520 に答える