-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathsetup.py
38 lines (33 loc) · 1.16 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
#!/usr/bin/env python3
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
readme = fh.read()
with open("threefive/version.py","r", encoding="utf-8") as latest:
version = latest.read().split("'")[1]
setuptools.setup(
name="threefive",
version=version,
author="Adrian of Doom, and the Fine Folks at Fu Corp.",
author_email="[email protected]",
description="The Undisputed Heavyweight Champion of SCTE-35. The Belts have been Unified.",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/futzu/threefive",
install_requires=[
'iframes >= 0.0.7',
'm3ufu >= 0.0.89',
'new_reader >= 0.1.13',
'sideways >= 0.0.23',
"pyaes",
],
scripts=['bin/threefive'],
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",
)