-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (33 loc) · 923 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
27
28
29
30
31
32
33
34
35
36
37
38
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
NAME = 'radiolist'
VERSION = '0.1'
try:
f = open(os.path.join(os.path.dirname(__file__), 'README.rst'))
long_description = f.read().strip()
f.close()
except:
long_description = ''
setup(name=NAME,
version=VERSION,
description='',
long_description=long_description,
author='b42',
author_email='[email protected]',
license='WTFPL',
url='https://github.com/hackerspace/radiolist',
scripts=[
'radio_update'
, 'radio'
],
classifiers=[
'Development Status :: 5 - Production/Stable'
, 'Intended Audience :: End Users/Desktop'
, 'Operating System :: OS Independent'
, 'Programming Language :: Python'
, 'Topic :: Multimedia :: Sound/Audio :: Players'
],
)