-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
executable file
·35 lines (31 loc) · 963 Bytes
/
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
[tool.black]
line-length = 80
target-version = ['py39']
exclude = '/.*(__pycache__).*/'
[tool.setuptools]
py-modules = ["srt_file_translator"]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "srt_file_translator"
version = "1.1.0"
description = "A python translator for srt files."
authors = [
{name="Connor Makowski", email="conmak@mit.edu"}
]
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
'License :: OSI Approved :: MIT License',
"Operating System :: OS Independent",
]
dependencies = [
"google-cloud-translate==3.12.1",
"type_enforced>=1.2.0",
]
[project.urls]
"Homepage" = "https://github.com/connor-makowski/srt_file_translator"
"Bug Tracker" = "https://github.com/connor-makowski/srt_file_translator/issues"
"Documentation" = "https://connor-makowski.github.io/srt_file_translator/srt_file_translator/enforcer.html"