-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (35 loc) · 1.08 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
[tool.poetry]
name = "client-for-tvdb"
version = "2020.05.24"
description = "A simple client for the TVDB API v3."
license = "MIT"
readme = "README.md"
homepage = "https://github.com/opacam/client-for-tvdb/"
repository = "https://github.com/opacam/client-for-tvdb/"
keywords = ["tvdb", "API client"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Multimedia :: Video",
"Topic :: Utilities"
]
authors = ["opacam <[email protected]>"]
maintainers = ["opacam <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.6"
requests = "^2.23.0"
requests-cache = "^0.5.2"
python-dotenv = "^0.13.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pytest-cov = "^2.9.0"
requests-mock = "^1.8.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"