cdosea-play/setup.py

30 lines
591 B
Python
Raw Normal View History

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