forked from speijnik/plex-watched-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (29 loc) · 830 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
[tool.poetry]
name = "plex-watched-sync"
version = "0.1.1"
description = "Small tool to synchronize watched status from one Plex server to another"
authors = ["Stephan Peijnik-Steinwender <[email protected]>"]
license = "MIT"
homepage = "https://github.com/speijnik/plex-watched-sync"
repository = "https://github.com/speijnik/plex-watched-sync"
keywords = ["plex", "sync"]
classifiers = [
"Environment :: Console",
"Operating System :: OS Independent"
]
include = [
"LICENSE.md"
]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.7"
PlexAPI = "^4.2.0"
click = "^7.1.2"
typing-extensions = "^3.7.4"
[tool.poetry.dev-dependencies]
ipython = "^6"
[tool.poetry.scripts]
plex-watched-sync = "plex_watched_sync.cli:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"