How to format Install requires line for json

178 Views Asked by At

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]},
1

There are 1 best solutions below

0
On BEST ANSWER

Should be

"install_requires" : {"":["python-redmine==0.8.3"]},