forked from Eittipat/pyrtmp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 803 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 803 Bytes
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
from distutils.core import setup
from setuptools import find_packages
setup(
name="pyrtmp",
packages=find_packages(),
version="0.3.1",
license="MIT",
description="PyRTMP: Pure Python RTMP server",
author="Eittipat.K",
author_email="iammop@gmail.com",
url="https://github.com/Eittipat/pyrtmp.git",
download_url="https://github.com/Eittipat/pyrtmp/releases/tag/v0.3.0",
keywords=["RTMP", "RTMPT", "asyncio"],
python_requires=">=3.10",
install_requires=["bitstring>=4.1,<4.2"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
)