-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
43 lines (37 loc) · 1.14 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
41
42
43
[tool.poetry]
name = "pasjonsfrukt"
version = "0.2.4"
description = "Scrape PodMe podcast streams to mp3 and host with RSS feed"
authors = ["Mathias Oterhals Myklebust <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/mathiazom/pasjonsfrukt"
repository = "https://github.com/mathiazom/pasjonsfrukt"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/mathiazom/pasjonsfrukt/issues"
[tool.poetry.scripts]
pasjonsfrukt = "pasjonsfrukt.cli:cli"
[tool.poetry.dependencies]
python = "^3.11"
fastapi = "0.115.3"
rfeed = "^1.1.1"
podme-api = "1.2.9"
uvicorn = "0.32.0"
typer = "0.12.5"
dataclass-wizard = {extras = ["yaml"], version = "0.23.0"}
asyncer = "0.0.8"
[tool.poetry.group.dev.dependencies]
black = "^24.10.0"
poethepoet = "0.29.0"
[tool.poe.tasks.fmt]
cmd = "black pasjonsfrukt"
help = "Format code using black"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"