cdosea-play/setup.py

30 lines
591 B
Python
Raw Normal View History

2017-08-25 21:21:36 +02:00
#!/usr/bin/env python3
2017-10-04 13:02:13 +02:00
from setuptools import setup, find_packages
2017-08-25 21:21:36 +02:00
setup(
name="cdoseaplay",
version="2",
2017-08-25 21:21:36 +02:00
description="play cdosea.org",
author="j",
author_email="j@mailb.org",
url="https://cdosea.org/",
license="GPLv3",
scripts=[
'cdosea-play',
],
2017-10-04 13:02:13 +02:00
packages=find_packages(exclude=['tests', 'tests.*']),
include_package_data=True,
2017-08-25 21:21:36 +02:00
install_requires=[
'ox >= 3',
2017-08-25 21:21:36 +02:00
'requests >= 1.1.0',
2017-10-04 13:15:50 +02:00
'tornado',
2017-10-16 20:31:44 +02:00
'mpmath',
'lanbox',
2023-10-06 23:21:26 +01:00
'sacn',
'mpv',
2017-08-25 21:21:36 +02:00
],
keywords=[],
classifiers=[
],
)