forked from opentok/Opentok-Python-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (29 loc) · 1.05 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
from os.path import abspath, dirname, join, normpath
from setuptools import setup
setup(
# Basic package information:
name = 'opentok-python-sdk',
version = '0.91.1',
py_modules = ['OpenTokSDK'],
# Packaging options:
zip_safe = False,
include_package_data = True,
# Metadata for PyPI:
author = 'TokBox, Inc.',
author_email = 'support@tokbox.com',
#license = '?',
url = 'https://github.com/opentok/Opentok-Python-SDK',
keywords = 'video chat tokbox tok opentok python media',
description = 'A python wrapper for the OpenTok video chat APIs.',
long_description = open(normpath(join(dirname(abspath(__file__)),
'README'))).read(),
classifiers = [
'Intended Audience :: Developers',
'Topic :: Communications',
'Topic :: Communications :: Chat',
'Topic :: Communications :: Conferencing',
'Topic :: Multimedia :: Video :: Capture',
'Topic :: Multimedia :: Video :: Display',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)