-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
33 lines (25 loc) · 809 Bytes
/
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
#!/usr/bin/python
"""twimp
=====
Another python RTMP implementation: this one is supposed to match
the twisted design principles closer than other implementations.
"""
import os
import sys
from distutils.core import setup
sys.path.insert(0, os.path.dirname(__file__))
from twimp import __version__
sys.path.pop(0)
setup(name='twimp',
version=__version__,
description='Twisted RTMP implementation',
long_description=__doc__,
platforms=['any'],
license='Apache License v2.0',
author='Arek Korbik',
author_email='[email protected]',
maintainer='Arek Korbik',
maintainer_email='[email protected]',
url='http://github.com/arkadini/twimp',
packages=['twimp', 'twimp.crypto', 'twimp.server', 'twimp.scripts',
'twimp.auth'])