-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
57 lines (47 loc) · 1.68 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
#!/usr/bin/env python2
#-*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os, sys
# Error-handling here is to allow package to be built w/o README included
try:
readme = open(os.path.join(
os.path.dirname(__file__), 'README.rst' )).read()
except IOError: readme = ''
setup(
name = 'libraptorq',
version = '18.4.0',
author = 'Mike Kazantsev',
author_email = 'mk.fraggod@gmail.com',
license = 'WTFPL',
keywords = [
'fec', 'forward', 'error', 'correction', 'fountain', 'code',
'rateless', 'erasure', 'codes', 'raptor', 'raptorq', 'libraptorq',
'lossy', 'reliable', 'encoding', 'rate', 'parity', 'redundancy', 'reliability' ],
url = 'http://github.com/mk-fg/python-libraptorq',
description = 'Python CFFI bindings for libRaptorQ'
' (RaptorQ RFC6330 FEC implementation).',
long_description = readme,
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: No Input/Output (Daemon)',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'License :: Public Domain',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2 :: Only',
'Topic :: Communications',
'Topic :: Internet',
'Topic :: System :: Archiving',
'Topic :: Utilities' ],
install_requires = ['cffi', 'setuptools'],
packages = find_packages(),
include_package_data = True,
entry_points = {
'console_scripts': ['rq = libraptorq.__main__:main'] })