diff options
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..a7da136 --- /dev/null +++ b/setup.py @@ -0,0 +1,14 @@ +#!/usr/bin/env python3 +from setuptools import setup + +PROJECT = 'tascam_fw_console' + +setup(name=PROJECT, + version='0.1', + author='Scott Bahling', + author_email='sbahling@mudgum.net', + packages=[PROJECT], + entry_points = { + 'console_scripts': ['tascam-fw-console=tascam_fw_console.cli:main'], + }, + ) |
