Skip to content

Commit 4f65218

Browse files
Update setup.py
1 parent d6d92b8 commit 4f65218

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

setup.py

+14-8
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,28 @@
1-
import setuptools
1+
import os
2+
from setuptools import setup
3+
4+
DIR = os.path.dirname(os.path.abspath(__file__))
5+
INSTALL_PACKAGES = open(os.path.join(DIR, 'requirements.txt')).read().splitlines()
26

37
with open("README.md", "r") as fh:
4-
long_description = fh.read()
8+
README = fh.read()
59

6-
setuptools.setup(
7-
name="AutoSub", # Replace with your own username
10+
setup(
11+
name="AutoSub",
12+
packages="autosub",
813
version="0.0.1",
914
author="Abhiroop Talasila",
1015
author_email="[email protected]",
11-
description="Automatically generate subtitles for any video file using STT",
12-
long_description=long_description,
16+
description="CLI application to generate subtitle file (.srt) for any video file using using STT",
17+
long_description=README,
18+
install_requires=INSTALL_PACKAGES,
1319
long_description_content_type="text/markdown",
1420
url="https://github.com/abhirooptalasila/AutoSub",
15-
packages=setuptools.find_packages(),
21+
keywords=['speech-to-text','deepspeech','machine-learning'],
1622
classifiers=[
1723
"Programming Language :: Python :: 3",
1824
"License :: OSI Approved :: MIT License",
1925
"Operating System :: OS Independent",
2026
],
21-
python_requires='>=3.6',
27+
python_requires='>=3.5',
2228
)

0 commit comments

Comments
 (0)