-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
37 lines (34 loc) · 1.08 KB
/
setup.py
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
32
33
34
35
36
37
#!/usr/bin/env python3
import setuptools
import umzz
with open("README.md", "r", encoding="utf-8") as fh:
readme = fh.read()
setuptools.setup(
name="umzz",
version=umzz.version(),
author="Adrian of Doom",
author_email="[email protected]",
description=" Ultra Mega Zoom Zoom is SCTE-35 Injection for Adaptive Bitrate HLS",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/futzu/umzz",
install_requires=[
"new_reader >= 0.1.9",
"iframes >= 0.0.7",
"x9k3 >= 0.2.57",
"m3ufu >=0.0.89",
"threefive >= 2.4.57",
],
py_modules=["umzz"],
scripts=["bin/umzz","bin/umzz2"],
platforms="all",
# packages=setuptools.find_packages(),
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: CPython",
],
python_requires=">=3.6",
)