-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
28 lines (26 loc) · 963 Bytes
/
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
import setuptools, sys
with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read()
setuptools.setup(
name="phantomflix",
version="2023.1.4",
author="Bbalduzz",
description="Netflix API Metadata & Downloader for Windows and Linux",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Bbalduzz/phantomflix",
project_urls={
"Tracker": "https://github.com/Bbalduzz/phantomflix/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
install_requires=[
"requests",
"protobuf",
"pycryptodomex",
"hyper @ git+https://github.com/tpubg583/hyper@development" if sys.version_info.major==3 and sys.version_info.minor>=10 else "hyper"
],
packages=setuptools.find_packages(),
python_requires=">=3.9.8",
)