-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (41 loc) · 1.51 KB
/
pyproject.toml
File metadata and controls
51 lines (41 loc) · 1.51 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
[build-system]
requires = [ "setuptools>=80.9.0", "wheel",]
build-backend = "setuptools.build_meta"
[project]
name = "media-downloader"
version = "2.3.0"
description = "Download audio/videos from the internet!\nHost an MCP Server for Agentic AI to download videos!"
readme = "README.md"
classifiers = [ "Development Status :: 5 - Production/Stable", "License :: Public Domain", "Environment :: Console", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 3",]
requires-python = ">=3.10"
dependencies = [ "agent-utilities>=0.2.42", "yt-dlp[default]>=2025.12.08",]
[[project.authors]]
name = "Audel Rouhi"
email = "knucklessg1@gmail.com"
[project.license]
text = "MIT"
[project.optional-dependencies]
mcp = [ "agent-utilities[mcp]>=0.2.42",]
agent = [ "agent-utilities[agent,logfire]>=0.2.42",]
all = [ "agent-utilities[mcp,agent,logfire]>=0.2.42",]
test = [ "pytest", "pytest-asyncio",]
[project.scripts]
media-downloader = "media_downloader.media_downloader:main"
media-downloader-mcp = "media_downloader.mcp_server:mcp_server"
media-downloader-agent = "media_downloader.agent_server:agent_server"
[tool.setuptools]
include-package-data = true
[tool.ruff]
line-length = 88
target-version = "py310"
[tool.mypy]
python_version = "3.10"
ignore_missing_imports = true
check_untyped_defs = true
[tool.setuptools.package-data]
media_downloader = [ "mcp_config.json", "agent_data/**",]
[tool.ruff.lint]
select = [ "E", "F", "I", "UP", "B",]
ignore = [ "E402", "E501", "B008",]
[tool.setuptools.packages.find]
where = [ ".",]