-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
40 lines (35 loc) · 1.15 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
40
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "TMDBTraktSyncer"
version = "2.1.0"
description = "A python script that syncs user watchlist and ratings for Movies, TV Shows and Episodes both ways between Trakt and TMDB."
authors = [
{name = "RileyXX"}
]
license = {file = "LICENSE"}
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.6"
dependencies = [
"requests>=2.32.3",
"selenium>=4.15.2"
]
[project.urls]
homepage = "https://github.com/RileyXX/TMDB-Trakt-Syncer"
issues = "https://github.com/RileyXX/TMDB-Trakt-Syncer/issues"
changelog = "https://github.com/RileyXX/TMDB-Trakt-Syncer/releases"
funding = "https://github.com/sponsors/RileyXX"
repository = "https://github.com/RileyXX/TMDB-Trakt-Syncer"
documentation = "https://github.com/RileyXX/TMDB-Trakt-Syncer"
[project.scripts]
TMDBTraktSyncer = "TMDBTraktSyncer.TMDBTraktSyncer:main"
[tool.setuptools]
packages = ["TMDBTraktSyncer"]