From 931ebeabf4a378b303f6868d34ca66b433d28188 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Mon, 22 Sep 2014 23:05:30 -0400 Subject: package this up as a script --- setup.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..eb437fa --- /dev/null +++ b/setup.py @@ -0,0 +1,19 @@ +from setuptools import setup, find_packages + +setup( + name="termcast_client", + version="0.1.0", + description="broadcast your terminal sessions for remote viewing", + url="https://github.com/doy/python-termcast-client", + author="Jesse Luehrs", + author_email="doy@tozt.net", + license="MIT", + classifiers=[ + ], + packages=find_packages(), + entry_points={ + "console_scripts": [ + "termcast=termcast_client:main", + ], + }, +) -- cgit v1.2.3