loklak / loklak_python_api

The loklak API for Python which makes it very easy to use and as a strict replacement to the twitter API
1.09k stars 26 forks source link

Use requirements.txt to install dependencies in pip install #91

Closed bhaveshAn closed 6 years ago

bhaveshAn commented 6 years ago

Current Behavior: Currently, install_requires is used to install dependencies.

install_requires=[
        "requests==2.16.0",
        "xmljson==0.1.9"
],

Expected Behaivour:

Use requirements file to install dependencies directly, Without specifying the future dependencies in setup.py In future, if some deps comes then it will be parsed using requirements file and do not require to add again in install_requires

Yes, wanna work on this issue