I have an info.json file with the line:
"install_requires" : {"" : []},
Assuming that this is where I put packages that my program relies on, how would I format it if I want it to rely on
python-redmine
version 0.8.3
Would it possibly be
"install_requires" : {"python-redmine" : [0.8.3]},
Should be
"install_requires" : {"":["python-redmine==0.8.3"]},