-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
48 lines (38 loc) · 1.29 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
# coding: utf-8
"""
Mux API
Mux is how developers build online video. This API encompasses both Mux Video and Mux Data functionality to help you build your video-related projects better and faster than ever before. # noqa: E501
The version of the OpenAPI document: v1
Contact: devex@mux.com
Generated by: https://openapi-generator.tech
"""
import os
from setuptools import setup, find_packages # noqa: H301
NAME = "mux_python"
VERSION = "3.19.0"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
REQUIRES = ["urllib3 >= 1.25.3", "six >= 1.10", "python-dateutil"]
here = os.path.abspath(os.path.dirname(__file__))
def get_file_text(file_name):
with open(os.path.join(here, file_name)) as in_file:
return in_file.read()
setup(
name=NAME,
version=VERSION,
description="Mux API",
author="Mux DevEx",
author_email="devex@mux.com",
url="https://github.com/muxinc/mux-python",
keywords=["OpenAPI", "OpenAPI-Generator", "Mux API"],
install_requires=REQUIRES,
packages=find_packages(exclude=["test", "tests"]),
include_package_data=True,
long_description=get_file_text("README.md"),
long_description_content_type="text/markdown",
license="MIT",
)