aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 8b7ce78c2723dbf1bbf3eaf0cb85d55c025f9d03 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import setup, find_packages

setup(
    name="termcast_server",
    version="0.1.2",
    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",
    install_requires=[
        "vt100",
        "paramiko",
        "tornado",
    ],
    package_data={
        '': ["*.html"],
    },
    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",
        ],
    },
)