-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (31 loc) · 1003 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
from setuptools import setup
def read_relative_file(filename):
"""Returns contents of the given file, which path is supposed relative
to this module."""
with open(os.path.join(os.path.dirname(__file__), filename)) as f:
return f.read().strip()
README = read_relative_file('README.rst')
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='googlemusicplayer',
version='0.7.dev0',
packages=['music_player'],
include_package_data=True,
description='a GTK music player using google music API',
long_description=README,
author='Yohann Gabory',
author_email="[email protected]",
LICENCE = "BSD",
CLASSIFIERS = [
'Programming Language :: Python :: 2.7',
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD License',
],
install_requires=[
'gmusicapi',
'python-vlc',
' pyasn1>=0.1.8'
],
scripts=['bin/googlemusic'],
)