-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 790 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (26 loc) · 790 Bytes
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
from setuptools import find_packages, setup
import pathlib
README = (pathlib.Path(__file__).parent / "README.md").read_text(encoding="utf8")
setup(
name="popcorn-time",
packages=find_packages(),
version="1.0.2",
description="Interact with the Popcorn Time API with python",
long_description=README,
long_description_content_type="text/markdown",
author="DeadSec-Security",
author_email="amng835@gmail.com",
url="https://github.com/DEADSEC-SECURITY/popcorn-time-api",
keywords=[
"popcorn",
"popcorntime",
"popcorn-time",
"popcorn api",
"popcorntimeapi",
"popcorntime-api",
"popcorn-time-api",
],
license="MIT",
install_requires=["requests==2.32.3"],
python_requires=">=3.7",
)