-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (59 loc) · 1.93 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (59 loc) · 1.93 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["setuptools==83.0.0", "wheel==0.47.0"]
build-backend = "setuptools.build_meta"
[project]
name = "podcast-api"
dynamic = ["version"]
description = "Python bindings for the Listen Notes Podcast API"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
authors = [{name = "Listen Notes, Inc.", email = "hello@listennotes.com"}]
keywords = ["listen notes", "podcast", "api"]
dependencies = ["requests>=2.34.1,<3"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Homepage = "https://github.com/ListenNotes/podcast-api-python"
Documentation = "https://www.listennotes.com/api/docs/"
Issues = "https://github.com/ListenNotes/podcast-api-python/issues"
[dependency-groups]
dev = [
"black==26.5.0",
"flake8==7.4.0",
"pytest==9.1.0",
"pytest-cov==7.0.0",
# Exercise the supported Requests lower bound in development and CI.
"requests==2.34.1",
]
[tool.uv]
required-version = ">=0.11.25"
[tool.setuptools]
packages = ["listennotes"]
[tool.setuptools.dynamic]
version = {attr = "listennotes.version.VERSION"}
[tool.setuptools.package-data]
listennotes = ["api-contract.json"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--strict-markers"
markers = ["integration: calls the public mock API (requires --run-integration)"]
[tool.coverage.run]
branch = true
source = ["listennotes"]
[tool.coverage.paths]
source = ["listennotes", "*/site-packages/listennotes"]
[tool.black]
line-length = 79
target-version = ["py310"]