-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (70 loc) · 1.95 KB
/
Copy pathpyproject.toml
File metadata and controls
82 lines (70 loc) · 1.95 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
71
72
73
74
75
76
77
78
79
80
81
82
[build-system]
requires = ["setuptools>=61.0", "wheel", "setuptools-scm>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "vim2vid"
dynamic = ["version"]
description = "Generate realistic VIM typing videos from text files"
readme = "README.md"
authors = [
{name = "Marc", email = "your.email@example.com"}
]
license = {text = "MIT"}
requires-python = ">=3.8"
keywords = ["vim", "video", "animation", "typing", "social-media", "linkedin"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Video",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"opencv-python>=4.8.0",
"Pillow>=10.0.0",
"numpy>=1.24.0",
]
[project.optional-dependencies]
dev = [
"black>=23.0.0",
"ruff>=0.1.0",
"mypy>=1.0.0",
"pytest>=7.0.0",
]
[project.scripts]
vim2vid = "vim2vid:main"
[tool.setuptools]
packages = ["vim2vid"]
[project.urls]
Homepage = "https://github.com/guybrush1984/vim2vid"
Documentation = "https://github.com/guybrush1984/vim2vid#readme"
Issues = "https://github.com/guybrush1984/vim2vid/issues"
[tool.black]
line-length = 100
target-version = ['py38']
[tool.ruff]
line-length = 100
target-version = "py38"
select = ["E", "F", "W", "I", "N", "UP", "B", "SIM"]
ignore = ["E501"] # Line too long - handled by black
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
ignore_missing_imports = true
[tool.setuptools_scm]
write_to = "vim2vid/_version.py"
[dependency-groups]
dev = [
"black>=24.8.0",
"mypy>=1.14.1",
"pytest>=8.3.5",
"ruff>=0.13.1",
]