-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (48 loc) · 1.54 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
44
45
46
47
48
49
50
51
52
53
54
55
[project]
dynamic = ["version"]
name = "srt2docx"
authors = [{ name = "Scott Dillman", email = "[email protected]" }]
maintainers = [{ name = "Scott Dillman", email = "[email protected]" }]
description = "Script to convert SRT files to DOCX files with tables"
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE.md" }
keywords = ["docx", "srt"]
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 4 - Beta",
# Indicate who your project is intended for
"Intended Audience :: Course Designers",
"Topic :: Content Creation :: Automation Tools",
# Pick your license as you wish (see also "license" above)
"License :: OSI Approved :: MIT License",
# Specify the Python versions you support here.
"Programming Language :: Python :: 3",
]
dependencies = [
"certifi==2024.2.2",
"charset-normalizer==3.3.2",
"docx==0.2.4",
"idna==3.6",
"loguru==0.7.2",
"lxml==5.2.2",
"munch==4.0.0",
"pillow==10.3.0",
"python-docx==1.1.2",
"pytz==2024.1",
"PyYAML==6.0.1",
"requests==2.31.0",
"ruff==0.3.2",
"srt==3.5.3",
"typing_extensions==4.12.2",
"urllib3==2.2.1",
]
requires-python = ">=3.8"
[project.urls]
Homepage = "https://dreamcyclestudios.com"
Documentation = "https://readthedocs.org"
Repository = "https://github.com/me/spam.git"
Issues = "https://github.com/me/spam/issues"
Changelog = "https://github.com/me/spam/blob/master/CHANGELOG.md"