forked from Cloud-Player/radio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (45 loc) · 1.16 KB
/
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
39
40
41
42
43
44
45
46
47
import os
from setuptools import setup, find_packages
setup(
name='cloudplayer.radio',
version='0.3.0.dev0',
author='CloudPlayer',
author_email='[email protected]',
url='https://cloud-player.io/radio',
description='CloudPlayer Raspberry Radio',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
license='Apache-2.0',
namespace_packages=['cloudplayer'],
setup_requires=['setuptools_git'],
install_requires=[
'mock',
'RPi.GPIO' if 'raspberrypi' in os.uname() else 'mock',
'tornado',
'luma.oled',
'setuptools'
],
extras_require={
'test': [
'codecov',
'mock',
'pylint',
'pytest-cov',
'pytest-mock',
'pytest-pep8',
'pytest-remove-stale-bytecode',
'pytest-timeout',
'pytest-tornado',
'pytest'
]
},
entry_points={
'console_scripts': [
'radio=cloudplayer.radio.app:main',
'pytest=pytest:main [test]',
'test=pytest:main [test]'
]
}
)