PyRequirements

python requirements dynamic generation


License
MIT
Install
pip install PyRequirements==0.1.3

Documentation

PyRequirements

PyRequirements is requirement packages version management.

If you have a large python progress, you will face to manage python library requirement. Keep these third part library newest and without conflict are hard work. PyRequirements aim to automatic generate requirement infomation, check up mostly requirement conflict

Install and Usage

  1. pip install PyRequirements

  2. pyrequirements install this command help to generate requirements.ini

  3. Edit requirements.ini. You should write name of your progress relied, rather then package stay in environment.

  4. pyrequirements show Test version infomation

  5. Edit your ./setup.py

     from pyrequirements import get_requirements
     # ... other code
    
     setup(
         # ... other arguments
         version = versioneer.get_version(),
         # ... other agruments
     )
    

TODO

  1. Requirements of required install package conflict check
  2. Install package module and python package conflict check
  3. Auto Update