From 1d1b23e5154e093a3e3e3e40b05946ab06c9738c Mon Sep 17 00:00:00 2001 From: sbahling Date: Fri, 26 Oct 2018 14:23:08 +0200 Subject: Create initial package setup with setuptools --- setup.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 setup.py (limited to 'setup.py') 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'], + }, + ) -- cgit v1.2.3