-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (35 loc) · 1.18 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
38
39
40
41
#!/usr/bin/env python3
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
readme = fh.read()
from threefive3.version import version
setuptools.setup(
name="threefive3",
version=version,
author="Adrian of Doom",
author_email="spam@iodisco.com",
description="threefive continued.",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/superkabuki/scte35",
install_requires=[
'm3ufu >= 0.0.89',
'sideways >= 0.0.23',
"pyaes",
],
scripts=['bin/threefive3'],
packages=setuptools.find_packages(),
classifiers=[
"License :: OSI Approved :: Sleepycat License",
"Environment :: Console",
"Operating System :: OS Independent",
"Operating System :: POSIX :: BSD :: OpenBSD",
"Operating System :: POSIX :: BSD :: NetBSD",
"Operating System :: POSIX :: Linux",
"Topic :: Multimedia :: Video",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: CPython",
],
python_requires=">=3.6",
)