25 lines
453 B
Python
25 lines
453 B
Python
#!/usr/bin/env python3
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name="cdoseaplay",
|
|
version="1",
|
|
description="play cdosea.org",
|
|
author="j",
|
|
author_email="j@mailb.org",
|
|
url="https://cdosea.org/",
|
|
license="GPLv3",
|
|
scripts=[
|
|
'cdosea-play',
|
|
],
|
|
packages=[
|
|
'cdoseaplay'
|
|
],
|
|
install_requires=[
|
|
'ox >= 2.1.541,<3',
|
|
'requests >= 1.1.0',
|
|
],
|
|
keywords=[],
|
|
classifiers=[
|
|
],
|
|
)
|