-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (58 loc) · 1.58 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (58 loc) · 1.58 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
# Project metadata + tool configuration. Used by ruff (lint), pytest
# (tests), and any future build tooling. The package itself isn't
# installed via pip install -e .; ViralMint runs directly from source.
[project]
name = "viralmint"
version = "1.0.0"
description = "Open-source viral content pipeline — scout, analyze, generate, publish."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "AGPL-3.0-only" }
authors = [
{ name = "ViralMint Contributors" },
]
keywords = [
"ai",
"video",
"content-creation",
"youtube",
"tiktok",
"whisper",
"yt-dlp",
"ffmpeg",
"self-hosted",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Video",
]
[project.urls]
Homepage = "https://viralmint.net"
Repository = "https://github.com/openclaw-easy/ViralMint"
Issues = "https://github.com/openclaw-easy/ViralMint/issues"
[tool.ruff]
line-length = 120
target-version = "py311"
extend-exclude = [
"venv",
".venv",
"frontend/node_modules",
"storage",
]
[tool.ruff.lint]
# Conservative ruleset matching what CI enforces today (E9/F63/F7/F82 —
# syntax errors and unused imports). Tighten over time without
# breaking existing PRs.
select = ["E9", "F63", "F7", "F82"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
asyncio_mode = "auto"
filterwarnings = [
"ignore::DeprecationWarning",
]