48 lines
1.1 KiB
Python
48 lines
1.1 KiB
Python
import os
|
|
|
|
from setuptools import setup
|
|
|
|
# Change directory since setuptools uses relative paths
|
|
os.chdir(os.path.dirname(os.path.realpath(__file__)))
|
|
|
|
setup(
|
|
name="airtime-playout",
|
|
version="1.0",
|
|
description="LibreTime Playout",
|
|
author="LibreTime Contributors",
|
|
url="https://github.com/libretime/libretime",
|
|
project_urls={
|
|
"Bug Tracker": "https://github.com/libretime/libretime/issues",
|
|
"Documentation": "https://libretime.org",
|
|
"Source Code": "https://github.com/libretime/libretime",
|
|
},
|
|
license="AGPLv3",
|
|
packages=[
|
|
"pypo",
|
|
"liquidsoap",
|
|
],
|
|
package_data={"": ["**/*.liq", "*.cfg", "*.types"]},
|
|
scripts=[
|
|
"bin/airtime-playout",
|
|
"bin/airtime-liquidsoap",
|
|
"bin/pyponotify",
|
|
],
|
|
install_requires=[
|
|
"amqplib",
|
|
"anyjson",
|
|
"argparse",
|
|
"configobj",
|
|
"docopt",
|
|
"future",
|
|
"kombu",
|
|
"mutagen",
|
|
"PyDispatcher",
|
|
"pyinotify",
|
|
"pytz",
|
|
"requests",
|
|
"defusedxml",
|
|
"packaging",
|
|
],
|
|
zip_safe=False,
|
|
)
|