-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (38 loc) · 1.46 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
"""setuptools installer for paradise player."""
import os
from setuptools import find_packages
from setuptools import setup
# local imports
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md'), encoding='UTF-8').read()
NEWS = open(os.path.join(here, 'NEWS.md'), encoding='UTF-8').read()
version = "0.2"
dev_reqs = []
reqs = ["requests"]
setup(name='paradise_player',
version=version,
description="CLI Player and notifier for radio paradise",
long_description=README + '\n\n' + NEWS,
long_description_content_type="text/markdown",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Operating System :: POSIX :: Linux", ],
keywords='radio_paradise radio player notification',
author='Thomas Chiroux',
author_email='',
license='LICENSE',
packages=find_packages(exclude=['ez_setup']),
package_data={'': ['*.md', '*.rst', '*.yaml', '*.cfg'], },
include_package_data=True,
zip_safe=False,
tests_require=dev_reqs,
install_requires=reqs,
entry_points={
'console_scripts':
['paradise_player=paradise.rpplayer:main',
'rpp=paradise.rpplayer:main', ]})