-
Notifications
You must be signed in to change notification settings - Fork 40
/
setup.py
44 lines (39 loc) · 1.38 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
from setuptools import setup, find_packages
__version__ = '3.6.3'
def get_install_requires():
install_requires = []
with open('requirements.txt', 'r') as req_txt:
install_requires = map(lambda s: s.strip(), req_txt.readlines()[2:])
return list(install_requires)
setup(
name='pytify',
version=__version__,
description='Spotify remote. Search, start and navigate through songs.',
long_description='https://github.com/bjarneo/pytify',
url='https://github.com/bjarneo/pytify',
download_url='https://pypi.python.org/pypi/pytify',
author='Bjarne Oeverli',
author_email='[email protected]',
license='MIT',
keywords='spotify pytify song search curses',
packages=find_packages(),
install_requires=get_install_requires(),
entry_points={
'console_scripts': [
'pytify=pytify.cli:main'
]
},
classifiers=[
'Intended Audience :: End Users/Desktop',
'Environment :: Console :: Curses',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Natural Language :: English',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Terminals',
],
)