Adding build task

pull/3/head
Drew Bednar 1 year ago
parent 5544977c96
commit df128519c7

@ -25,3 +25,9 @@ def delint(c):
"""Applies automated linters to project""" """Applies automated linters to project"""
c.run("isort ./speech_collect ./tests ./tasks.py", pty=True) c.run("isort ./speech_collect ./tests ./tasks.py", pty=True)
c.run("black ./speech_collect ./tests ./tasks.py", pty=True) c.run("black ./speech_collect ./tests ./tasks.py", pty=True)
@task
def build(c):
"""Builds the project as a Python package."""
c.run("python3 -m build")

Loading…
Cancel
Save