Pip package working locally but not if i install it via pipenv into another environment

前端 未结 1 1172
野性不改
野性不改 2021-01-28 22:54

I created a pypi package for an api to get the lessons from my school and uploaded it to pypi but when I install it, it doesn\'t get recognized. It works just fine locally when.

相关标签:
1条回答
  • 2021-01-28 23:50

    Your setup.py lists nothing to install. You must use packages=<a list of packages> or py_modules=<a list of .py modules>.

    See https://packaging.python.org/tutorials/packaging-projects/

    0 讨论(0)
提交回复
热议问题