aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
blob: eb437fae1b1920f79b1295c6f3b81c30184269f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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",
        ],
    },
)