Skip to content

Commit 4ac8a8e

Browse files
committed
add setup.py. Close #6
1 parent 5e56fcf commit 4ac8a8e

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ Vim-like macros for bash
55
Usage:
66
=====
77

8+
`$ sudo -H python3 setup.py install` to install.
9+
810
`$ tbh` to start recording bash commands. `donezo` to stop recording.
911

1012
```

setup.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/usr/bin/env python
2+
3+
from distutils.core import setup
4+
5+
setup(name='same-tbh',
6+
version='0.1',
7+
description='Vim-like macros for bash',
8+
author='Raphael Gontijo Lopes',
9+
author_email='[email protected]',
10+
url='https://github.com/iRapha/same-tbh',
11+
scripts=['tbh'],
12+
)

0 commit comments

Comments
 (0)