From a7e6b8683c1989f3a9b155336e8a4d314fe7bb8b Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 23 Sep 2014 14:14:45 -0400 Subject: packaging --- setup.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..04b3fcc --- /dev/null +++ b/setup.py @@ -0,0 +1,23 @@ +from setuptools import setup, find_packages + +setup( + name="termcast_server", + version="0.1.0", + description="allow users to broadcast their terminals for others to watch", + url="https://github.com/doy/python-termcast-server", + author="Jesse Luehrs", + author_email="doy@tozt.net", + license="MIT", + classifiers=[ + "Development Status :: 3 - Alpha", + "Environment :: Console", + "License :: OSI Approved :: MIT License", + "Topic :: Terminals :: Terminal Emulators/X Terminals", + ], + packages=find_packages(), + entry_points={ + "console_scripts": [ + "termcast_server=termcast_server:main", + ], + }, +) -- cgit v1.2.3-54-g00ecf