generated from deepgram/oss-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
45 lines (41 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from setuptools import setup, find_packages
import os.path
with open("README.md", "r", encoding="utf-8") as fh:
LONG_DESCRIPTION = fh.read()
with open(
os.path.join(
os.path.abspath(os.path.dirname(__file__)), "deepgram_captions", "_version.py"
),
encoding="utf8",
) as file:
exec(file.read())
# imports as __version__
DESCRIPTION = "A Python package for generating captions."
setup(
name="deepgram-captions",
version=__version__,
author="Deepgram",
author_email="[email protected]",
url="https://github.com/deepgram/deepgram-python-captions",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=[],
extras_require={
"dev": [
"black",
"pytest",
],
},
keywords=["deepgram", "captions", "srt", "webvtt"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Topic :: Text Processing :: General",
],
)