-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
27 lines (24 loc) · 1.26 KB
/
setup.py
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
import setuptools
with open(file="README.md", mode="r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(name='vtt_to_srt3',
version='0.2.0.4',
author="Jeison Cardoso",
author_email="[email protected]",
maintainer="Jeison Cardoso",
description="vtt to srt subtitles converter package",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/jsonzilla/vtt_to_srt3",
packages=setuptools.find_packages(exclude=["tests", "tests.*"]),
classifiers=["Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent"],
entry_points={
"console_scripts":
["vtt_to_srt=vtt_to_srt.vtt_to_srt:main"]
},
)