How can I test my python module without installing it

后端 未结 3 2200
無奈伤痛
無奈伤痛 2021-02-13 00:56

I\'m in the process of redesigning/refactoring my Python quantum chemistry package (pyquante). One of the things I don\'t like about the existing release is that I have to insta

3条回答
  •  梦如初夏
    2021-02-13 01:16

    Create a proper package for your stuff and use

    python setup.py develop
    

    to make it a proper dev-package.

    See:

    • https://stackoverflow.com/a/19048754/548039
    • http://setuptools.readthedocs.io/en/latest/setuptools.html#development-mode

提交回复
热议问题