mirror of
https://github.com/LukeHagar/plexpy.git
synced 2025-12-06 04:20:52 +00:00
22 lines
436 B
TOML
22 lines
436 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "plexpy"
|
|
version = "0.0.1"
|
|
license = { text = "MIT" }
|
|
authors = [
|
|
{ name="Luke Hagar", email="lukeslakemail@gmail.com" }
|
|
]
|
|
description = """An Open API Spec for interacting with Plex.tv and Plex Servers"""
|
|
readme = "README.md"
|
|
requires-python = ">=3.7"
|
|
dependencies = [
|
|
"requests",
|
|
"http-exceptions",
|
|
"pytest",
|
|
"responses"
|
|
]
|
|
|