-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (39 loc) · 906 Bytes
/
Copy pathsetup.py
File metadata and controls
45 lines (39 loc) · 906 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#! coding: utf-8
import sys
try:
from setuptools import setup
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup
py_version = sys.version_info[:2]
# All versions
install_requires = [
'tornado',
'setuptools',
'makeobj',
'pymongo',
]
if py_version < (3, 2):
install_requires += [
'futures',
'configparser',
]
if py_version in [(2, 6), (3, 0)]:
install_requires += [
'importlib',
'ordereddict',
]
setup(
name='Dynamic Stream Server',
version = '0.7',
description = 'Dynamic video streaming system',
author = [
'João Bernardo Oliveira',
'Nelson Perez',
],
author_email = 'jbvsmo@gmail.com',
url = 'https://github.com/terabit-software/dynamic-stream-server',
packages = [],
install_requires = install_requires,
)