This repository was archived by the owner on Dec 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (49 loc) · 2.01 KB
/
Copy pathsetup.py
File metadata and controls
57 lines (49 loc) · 2.01 KB
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
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# termify is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as by
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# termify is distributed in the hope that it will be useful,
# but without any warranty; without even the implied warranty of
# merchantability or fitness for a particular purpose. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with termify. If not, see < http://www.gnu.org/licenses/ >.
#
# (C) 2017 - by Tiago Barreto, <iam@tiagobarreto.com>
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
requirements = ['requests', 'bs4', 'osascript', 'terminaltables']
setup(
name="termify",
version="1.0.1",
author="Tiago Barreto",
author_email="iam@tiagobarreto.com",
description="Termify is a simple service that permits you to retrieve lyrics in your terminal",
long_description=read('README.md'),
license="MIT",
keywords="termify lyrics spotify terminal",
url="https://github.com/tiagobarreto/termify",
packages=['src'],
include_package_data=True,
install_requires=requirements,
entry_points={'console_scripts': ['termify=src.__main__:main']},
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Multimedia :: Sound/Audio :: Analysis',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
python_requires='>=2.6, !=3.0.*, !=3.1.*, !=3.2.*, <4'
)