add cli program into flake

This commit is contained in:
xenofem 2022-05-25 09:43:20 -04:00
parent 7719e33832
commit 6d19c2b967
4 changed files with 26 additions and 2 deletions

View file

@ -1,2 +0,0 @@
tqdm
websockets

12
cli/setup.py Normal file
View file

@ -0,0 +1,12 @@
#!/usr/bin/env python
from setuptools import setup
setup(name='transbeam-cli',
version='0.1',
scripts=['transbeam-cli'],
install_requires=[
'tqdm',
'websockets',
],
)