diff --git a/formula.txt b/formula.txt new file mode 100644 index 00000000..14f1c01b --- /dev/null +++ b/formula.txt @@ -0,0 +1,26 @@ +class Secureli < Formula + include Language::Python::Virtualenv + desc "seCureLI is a tool that enables you to experience the delight of building products by helping you get ideas from your head into working software as frictionlessly as possible, in a reliable, secure, scalable, and observable way" + homepage "https://github.com/slalombuild/secureli" + url "{{ secureliPackageUrl }}" + version "{{ secureliVersion }}" + sha256 "{{ secureliSha256 }}" + license "Apache-2.0" + + depends_on "python@3.9" + + {% for package in secureliPackageDependencies %} + resource "{{ package.packageName }}" do + url "{{ package.packageUrl}}" + sha256 "{{ package.sha256 }}" + end + {% endfor %} + + def install + virtualenv_install_with_resources + end + + test do + system "secureli", "--help" + end + end diff --git a/pyproject.toml b/pyproject.toml index 4c4a6e95..6a895849 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "secureli" -version = "0.21.7" +version = "0.21.8" description = "Secure Project Manager" authors = ["Caleb Tonn "] license = "Apache-2.0"