-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (46 loc) · 1.49 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
46
47
48
49
50
51
52
53
54
# coding: utf-8
"""
Tavus Developer API Collection
We're an AI video research company making personalized video possible at scale. Generate videos of yourself, and never record again! Available via web app & developer APIs.
The version of the OpenAPI document: 1.0.0
Generated by: https://konfigthis.com
"""
from setuptools import setup, find_packages # noqa: H301
NAME = "tavus-python-sdk"
VERSION = "1.0.0"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
# read the contents of README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
REQUIRES = [
"certifi >= 2023.7.22",
"python-dateutil ~= 2.8.2",
"typing_extensions ~= 4.3.0",
"urllib3 ~= 1.26.18",
"cryptography ~= 42.0.5",
"frozendict ~= 2.3.4",
"aiohttp ~= 3.9.2",
"pydantic ~= 2.4.2"
]
setup(
name=NAME,
version=VERSION,
description="Tavus Developer API Collection",
author="Konfig",
author_email="[email protected]",
url="https://github.com/konfig-sdks/tavus-python-sdk/tree/main/python",
keywords=["Konfig", "Tavus Developer API Collection"],
python_requires=">=3.7",
install_requires=REQUIRES,
packages=find_packages(exclude=["test", "tests"]),
include_package_data=True,
license="MIT",
long_description=long_description,
long_description_content_type='text/markdown'
)