-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
35 lines (29 loc) · 858 Bytes
/
pyproject.toml
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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pydisney"
version = "2.0.0"
description = "A Feature rich API wrapper for Disney+ made with python."
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"]
dependencies = [
"pysubs2 == 1.6.1",
"m3u8 == 3.6.0",
"requests >= 2.31.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"