-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (28 loc) · 933 Bytes
/
pyproject.toml
File metadata and controls
34 lines (28 loc) · 933 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
29
30
31
32
33
# pyproject.toml
[build-system]
requires = ["setuptools>=82.0.1", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pydisney"
version = "3.0.3"
description = "A Feature rich API wrapper for Disney+ made with python. Allows for subtitle and audio download"
readme = "README.md"
authors = [{ name = "Pamparampampam"}]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["disney", "disneyplus", "api", "wrapper", "client", "python", "pydisney", "subtitle", "subtitle-downloader", "downloader", "disney+"]
dependencies = [
"requests >= 2.32.5",
"m3u8 >= 6.0.0"
]
requires-python = ">=3.7"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[project.urls]
Github = "https://github.com/pam-param-pam/Disney-Plus-api-wrapper"