forked from JamesHarrison/openob
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·36 lines (33 loc) · 1.48 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
#!/usr/bin/env python
from setuptools import setup
long_description = ''
with open('README.md', 'r') as f:
long_description = f.read()
setup(name='OpenOB',
version='4.0.3',
long_description=long_description,
long_description_content_type='text/markdown',
description='Broadcast audio over IP codec built with PyGST',
author='James Harrison',
author_email='[email protected]',
url='https://github.com/JamesHarrison/openob',
scripts=['bin/openob'],
install_requires=['redis'],
packages=['openob', 'openob.rtp'],
classifiers=["Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Topic :: Communications",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: No Input/Output (Daemon)",
"Intended Audience :: Telecommunications Industry",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers"
]
)