This repository has been archived by the owner on Dec 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
55 lines (54 loc) · 1.45 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
from setuptools import setup
setup(
name='sportyfin',
version='1.0.7',
author='Axel Mierczuk',
author_email='[email protected]',
packages=['sportyfin', 'sportyfin.util'],
include_package_data=True,
url='http://pypi.python.org/pypi/sportyfin/',
license='LICENSE.txt',
description='Scrapes popular streaming sites and compiles m3u/xml files for viewing.',
long_description=open('README.md').read(),
install_requires=[
"async-generator",
"attrs",
"beautifulsoup4",
"bs4",
"certifi",
"cffi",
"charset-normalizer",
"chromedriver-binary",
"cryptography",
"h11",
"idna",
"lxml",
"outcome",
"Pillow",
"pycparser",
"pyOpenSSL",
"python-dotenv",
"regex",
"requests",
"selenium",
"six",
"sniffio",
"sortedcontainers",
"soupsieve",
"trio",
"trio-websocket",
"urllib3",
"wsproto",
"ruamel_yaml"
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.9',
],
)