leogomezz4t / PyTextNow_API

Python texting API utilizing TextNow API
MIT License
67 stars 41 forks source link

Setup.py does not include project requirements #10

Closed peterHoburg closed 3 years ago

peterHoburg commented 3 years ago

setup.py should have a section called install_requires that includes all the dependencies of the project. In this case

    install_requires=["requests >  2"]

requests > 2 in this case is just an example. This should be the version of requests that your package will not work if it is older than. Requests changed quite a bit in the 2.0 release so > 2 should work, but I have not tested it.

You should never lock a package dependencies to a specific version unless you absolutely have to. So don't do requests == 2.23.1 or anything like that.

leogomezz4t commented 3 years ago

thanks