Skip to content

OmarElawady/tasks-dependencies-manager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

codecov Build Status

Tasks dependencies manager

This is a project that maintains a list of tasks along with their dependencies.

This is the documentation of the project code.

Usage

b = Make()
b.add_task("publish", ["build-release"], "print publish")
b.add_task("build-release", ["nim-installed"], "print exec command to build release mode")
b.add_task("nim-installed", ["curl-installed"], "print curl LINK | bash")
b.add_task("curl-installed", ["apt-installed"], "apt-get install curl")
b.add_task("apt-installed", [], "code to install apt...")
b.run_task("publish")

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages