-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
73 lines (67 loc) · 1.95 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
71
72
73
from setuptools import setup, find_packages
version = "1.0.0"
long_description = ""
try:
long_description=file('README').read()
except Exception:
pass
license = ""
try:
license=file('MIT_License.txt').read()
except Exception:
pass
setup(
name = 'fluunt',
version = version,
description = 'Video stream server (HLS, HTTP, HTTP-FLV, time-shift, image server)',
author = 'Pablo Saavedra',
author_email = '[email protected]',
url = 'http://github.com/psaavedra/fluunt',
packages = find_packages(),
package_data={
},
zip_safe=False,
install_requires=[
"paste >=1.7.5.1",
"requests >=2.3.0",
"bottle >=0.11.5"
],
scripts=[
"tools/fluunt-server",
"tools/fluunt-cleaner",
"tools/fluunt-recorder",
"tools/fluunt-image-server",
"tools/fluunt-watchdog",
],
data_files=[
('/usr/share/doc/fluunt', [
'README',
'AUTHORS',
]),
('/etc/supervisor/conf.d/', [
'cfg/supervisor/fluunt.conf',
]),
('/etc/supervisor/conf.d/', [
'cfg/supervisor/fluunt-image-server.conf',
]),
('/etc/logrotate.d/', [
'cfg/logrotate/fluunt',
]),
('/etc/cron.d/', [
'cfg/crond/fluunt',
])
],
download_url= 'https://github.com/psaavedra/fluunt/zipball/master',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Multimedia :: Video",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Software Development :: Libraries :: Python Modules",
],
long_description=long_description,
license=license,
keywords = "python stream pvr live h264 mpegts flv hls images convert",
)