mirror of
https://github.com/streamlink/streamlink
synced 2024-10-30 23:16:39 +01:00
a14f170a04
* build: fix for universal wheel on python 2.7 * release: fix build order for deploys The script to build the sdist and wheel packages is run before the script that uploads them to PyPI. The sdist script doesn't clean up the environment, but extra prune options have been added to the MANIFEST.in file (thanks @back-to). * build: ensure twine/wheel up-to-date and upload sdist/whl separately
99 lines
3.8 KiB
Python
99 lines
3.8 KiB
Python
#!/usr/bin/env python
|
|
import codecs
|
|
from os import environ
|
|
from os import path
|
|
from sys import path as sys_path
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
import versioneer
|
|
|
|
deps = [
|
|
# Require backport of concurrent.futures on Python 2
|
|
'futures;python_version<"3.0"',
|
|
# Require singledispatch on Python <3.4
|
|
'singledispatch;python_version<"3.4"',
|
|
"requests>=2.2,!=2.12.0,!=2.12.1,!=2.16.0,!=2.16.1,!=2.16.2,!=2.16.3,!=2.16.4,!=2.16.5,!=2.17.1,<3.0",
|
|
'urllib3[secure]<1.23,>=1.21.1;python_version<"3.0"',
|
|
"isodate",
|
|
"websocket-client",
|
|
# Support for SOCKS proxies
|
|
"PySocks!=1.5.7,>=1.5.6",
|
|
# win-inet-pton is missing a dependency in PySocks, this has been fixed but not released yet
|
|
# Required due to missing socket.inet_ntop & socket.inet_pton method in Windows Python 2.x
|
|
'win-inet-pton;python_version<"3.0" and platform_system=="Windows"',
|
|
# shutil.get_terminal_size and which were added in Python 3.3
|
|
'backports.shutil_which;python_version<"3.3"',
|
|
'backports.shutil_get_terminal_size;python_version<"3.3"'
|
|
]
|
|
|
|
# for encrypted streams
|
|
if environ.get("STREAMLINK_USE_PYCRYPTO"):
|
|
deps.append("pycrypto")
|
|
else:
|
|
# this version of pycryptodome is known to work and has a Windows wheel for py2.7, py3.3-3.6
|
|
deps.append("pycryptodome>=3.4.3,<4")
|
|
|
|
# for localization
|
|
if environ.get("STREAMLINK_USE_PYCOUNTRY"):
|
|
deps.append("pycountry")
|
|
else:
|
|
deps.append("iso-639")
|
|
deps.append("iso3166")
|
|
|
|
# When we build an egg for the Win32 bootstrap we don"t want dependency
|
|
# information built into it.
|
|
if environ.get("NO_DEPS"):
|
|
deps = []
|
|
|
|
this_directory = path.abspath(path.dirname(__file__))
|
|
srcdir = path.join(this_directory, "src/")
|
|
sys_path.insert(0, srcdir)
|
|
|
|
with codecs.open(path.join(this_directory, "README.md"), 'r', "utf8") as f:
|
|
long_description = f.read()
|
|
|
|
setup(name="streamlink",
|
|
version=versioneer.get_version(),
|
|
cmdclass=versioneer.get_cmdclass(),
|
|
description="Streamlink is command-line utility that extracts streams "
|
|
"from various services and pipes them into a video player of "
|
|
"choice.",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.com/streamlink/streamlink",
|
|
project_urls={
|
|
"Documentation": "https://streamlink.github.io/",
|
|
"Tracker": "https://github.com/streamlink/streamlink/issues",
|
|
"Source": "https://github.com/streamlink/streamlink",
|
|
"Funding": "https://opencollective.com/streamlink"
|
|
},
|
|
author="Streamlink",
|
|
# temp until we have a mailing list / global email
|
|
author_email="charlie@charliedrage.com",
|
|
license="Simplified BSD",
|
|
packages=find_packages("src"),
|
|
package_dir={"": "src"},
|
|
entry_points={
|
|
"console_scripts": ["streamlink=streamlink_cli.main:main"]
|
|
},
|
|
install_requires=deps,
|
|
test_suite="tests",
|
|
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4",
|
|
classifiers=["Development Status :: 5 - Production/Stable",
|
|
"License :: OSI Approved :: BSD License",
|
|
"Environment :: Console",
|
|
"Intended Audience :: End Users/Desktop",
|
|
"Operating System :: POSIX",
|
|
"Operating System :: Microsoft :: Windows",
|
|
"Operating System :: MacOS",
|
|
"Programming Language :: Python :: 2.7",
|
|
"Programming Language :: Python :: 3.4",
|
|
"Programming Language :: Python :: 3.5",
|
|
"Programming Language :: Python :: 3.6",
|
|
"Programming Language :: Python :: 3.7",
|
|
"Topic :: Internet :: WWW/HTTP",
|
|
"Topic :: Multimedia :: Sound/Audio",
|
|
"Topic :: Multimedia :: Video",
|
|
"Topic :: Utilities"])
|