aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 04b3fccf3e1a165c48350330024d9215e3a3dbc0 (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
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",
        ],
    },
)