Skip to content

Commit

Permalink
feat: init build tooling
Browse files Browse the repository at this point in the history
  • Loading branch information
kennyworkman committed Jan 27, 2022
1 parent 37182b3 commit 34639f0
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Justfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
local_install:
python -m pip install -e .

build:
python setup.py sdist bdist_wheel

publish:
twine upload dist/*
9 changes: 9 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
from setuptools import setup

setup(
name="latch",
version="v0.0.0",
author_email="[email protected]",
description="latch sdk",
packages=["latch"],
)

0 comments on commit 34639f0

Please sign in to comment.