-
Notifications
You must be signed in to change notification settings - Fork 200
/
pyproject.toml
39 lines (34 loc) · 1.04 KB
/
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
35
36
37
38
39
[project]
name = "PlexAPI"
authors = [
{ name = "Michael Shepanski", email = "[email protected]" }
]
description = "Python bindings for the Plex API."
readme = "README.rst"
requires-python = ">=3.9"
keywords = ["plex", "api"]
license = {file = "LICENSE.txt"}
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
]
dependencies = ["requests"]
dynamic = ["version"]
[project.optional-dependencies]
alert = ["websocket-client>=1.3.3"]
[project.urls]
Homepage = "https://github.com/pkkid/python-plexapi"
Documentation = "https://python-plexapi.readthedocs.io"
[tool.setuptools.dynamic]
version = {attr = "plexapi.const.__version__"}
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
markers = [
"client: this is a client test.",
"req_client: require a client to run this test.",
"anonymously: test plexapi anonymously.",
"authenticated: test plexapi authenticated.",
]