-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (21 loc) · 825 Bytes
/
setup.py
File metadata and controls
25 lines (21 loc) · 825 Bytes
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
from setuptools import setup, find_packages
requirements = ['pycryptodome>=3.7.0']
setup(
name="ziggeo",
version="2.30",
description="Ziggeo SDK for python",
long_description="Ziggeo API (https://ziggeo.com) allows you to integrate video recording and playback with only two lines of code in your site, service or app. This is the Python Server SDK repository.",
url="http://github.com/Ziggeo/ZiggeoPythonSdk",
license="Apache 2.0",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
],
keywords=("Ziggeo video-upload"),
packages=["."],
package_dir={'ziggeo': '.'},
install_requires=requirements,
author="Ziggeo",
author_email="support@ziggeo.com"
)