forked from OpenSight/janus-cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
70 lines (67 loc) · 2.63 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import os
from setuptools import setup, find_packages
import januscloud
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
CHANGES = open(os.path.join(here, 'CHANGES.md')).read()
requires = [
'gevent==1.4.0',
'ws4py==0.5.1',
'PyYAML==5.1',
'pyramid==1.10.4',
'requests==2.20.0',
'python-daemon==2.2.3',
'redis==3.5.2'
]
setup(name='janus-cloud',
version=januscloud.__version__,
license='AGPLv3',
url='https://github.com/OpenSight/janus-cloud',
description='Janus-cloud is a cluster solution for Janus WebRTC server, by API proxy approach',
long_description=README + '\n\n' + CHANGES,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 3 - Alpha",
"Framework :: Pyramid",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Communications :: Conferencing",
"Topic :: Communications :: Internet Phone",
"Topic :: Internet :: WWW/HTTP",
],
author='OpenSight',
author_email='[email protected]',
keywords='Janus cloud WebRTC',
packages=find_packages(),
include_package_data=True,
package_data={
'januscloud': ['certs/mycert.key', 'certs/mycert.pem'],
},
data_files=[
('opt/janus-cloud/conf', ['conf/janus-proxy.plugin.p2pcall.yml',
'conf/janus-proxy.plugin.videocall.yml',
'conf/janus-proxy.plugin.videoroom.yml',
'conf/janus-proxy.yml',
'conf/janus-sentinel.yml']),
('opt/janus-cloud/html', ['html/p2pcalltest.html',
'html/p2pcalltest.js']),
('opt/janus-cloud/certs', ['januscloud/certs/mycert.key',
'januscloud/certs/mycert.pem'])
],
zip_safe=False,
install_requires=requires,
tests_require=requires,
entry_points="""
[console_scripts]
janus-proxy = januscloud.proxy.main:main
janus-sentinel = januscloud.sentinel.main:main
""",
)