-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (25 loc) · 851 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from setuptools import setup
setup(name='rio',
version='0.0.1',
packages=['rio'],
author='John Tyree',
author_email='johntyree@gmail.com',
license='GPLv3+',
url='http://github.com/johntyree/rio',
description="Stream ShoutCast stations, skipping ad content.",
keywords="shoutcast radio",
long_description=open('README.md').read(),
entry_points={
'console_scripts': [
'rio = rio.rio:main',
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: "
"GNU General Public License v3 or later (GPLv3+)",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: Multimedia :: Sound/Audio :: Capture/Recording",
"Topic :: Utilities",
],
)