2014-12-17 23:05:55 +01:00
|
|
|
import os
|
2021-06-03 15:20:39 +02:00
|
|
|
|
|
|
|
from setuptools import setup
|
2014-12-17 22:42:29 +01:00
|
|
|
|
2021-09-02 14:08:20 +02:00
|
|
|
# Change directory since setuptools uses relative paths
|
|
|
|
os.chdir(os.path.dirname(os.path.realpath(__file__)))
|
2020-01-16 15:32:51 +01:00
|
|
|
|
2014-12-17 22:42:29 +01:00
|
|
|
|
2021-05-27 16:23:02 +02:00
|
|
|
setup(
|
|
|
|
name="airtime-playout",
|
|
|
|
version="1.0",
|
|
|
|
description="Airtime Playout Engine",
|
|
|
|
url="http://github.com/sourcefabric/Airtime",
|
|
|
|
author="sourcefabric",
|
|
|
|
license="AGPLv3",
|
2021-09-02 14:08:20 +02:00
|
|
|
packages=[
|
|
|
|
"pypo",
|
|
|
|
"pypo.media",
|
|
|
|
"pypo.media.update",
|
|
|
|
"liquidsoap",
|
|
|
|
],
|
2021-05-27 16:23:02 +02:00
|
|
|
package_data={"": ["**/*.liq", "*.cfg", "*.types"]},
|
2021-09-02 14:08:20 +02:00
|
|
|
scripts=[
|
|
|
|
"bin/airtime-playout",
|
|
|
|
"bin/airtime-liquidsoap",
|
|
|
|
"bin/pyponotify",
|
|
|
|
],
|
2021-05-27 16:23:02 +02:00
|
|
|
install_requires=[
|
|
|
|
"amqplib",
|
|
|
|
"anyjson",
|
|
|
|
"argparse",
|
|
|
|
"configobj",
|
|
|
|
"docopt",
|
|
|
|
"future",
|
|
|
|
"kombu",
|
|
|
|
"mutagen",
|
|
|
|
"PyDispatcher",
|
|
|
|
"pyinotify",
|
|
|
|
"pytz",
|
|
|
|
"requests",
|
|
|
|
"defusedxml",
|
|
|
|
"packaging",
|
|
|
|
],
|
|
|
|
zip_safe=False,
|
|
|
|
)
|