{"library":"paver","title":"Paver Build and Deployment Scripting","description":"Paver is a Python-based build and task management system, designed to simplify scripting for development, distribution, and deployment. Its last stable release, 1.3.4, was in 2017. The project appears to be unmaintained and is not recommended for new development.","language":"python","status":"abandoned","last_verified":"Fri Apr 17","install":{"commands":["pip install paver"],"cli":{"name":"paver","version":"Paver 1.3.4"}},"imports":["from paver.easy import *"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"from paver.easy import *\n\n@task\ndef hello():\n    print(\"Hello from Paver!\")\n\n@task\n@needs('hello')\ndef world():\n    print(\"World! This task depends on 'hello'.\")\n\n# To run:\n# Save this as 'pavement.py'\n# Then execute in terminal: 'paver hello' or 'paver world'","lang":"python","description":"This quickstart demonstrates defining simple tasks using the '@task' decorator and managing task dependencies with '@needs'. Save the code as `pavement.py` in your project root and run `paver <task_name>` from your terminal.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}