Skip to content

Commit afc8b17

Browse files
committed
packaging
1 parent d2f5500 commit afc8b17

File tree

3 files changed

+38
-5
lines changed

3 files changed

+38
-5
lines changed

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

Lines changed: 36 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,41 @@
11
#!/usr/bin/env python
22

3+
import os
34
from setuptools import setup
45

6+
directory = os.path.abspath(os.path.dirname(__file__))
7+
with open(os.path.join(directory, 'README.md'), encoding='utf-8') as f:
8+
long_description = f.read()
9+
510
setup(name='yet-another-spotify-lyrics',
6-
version='1.0',
7-
description='Command Line Spotify Lyrics with Album Cover',
8-
author='Goktug',
9-
url='https://github.com/goktug97/yet-another-spotify-lyrics',
10-
scripts=['spotify-lyrics'])
11+
version='1.0.0',
12+
description='Command Line Spotify Lyrics with Album Cover',
13+
author='Göktuğ Karakaşlı',
14+
author_email='[email protected]',
15+
license='MIT',
16+
long_description=long_description,
17+
long_description_content_type='text/markdown',
18+
url='https://github.com/goktug97/yet-another-spotify-lyrics',
19+
download_url=(
20+
'https://github.com/goktug97/yet-another-spotify-lyrics/archive/v1.0.0.tar.gz'),
21+
py_modules=[os.path.splitext(os.path.basename(path))[0]
22+
for path in ['spotify_lyrics']],
23+
entry_points={
24+
'console_scripts': [
25+
'spotify-lyrics = spotify_lyrics:main',
26+
]
27+
},
28+
classifiers=[
29+
"Programming Language :: Python :: 3",
30+
"License :: OSI Approved :: MIT License",
31+
"Operating System :: POSIX :: Linux",
32+
],
33+
install_requires=[
34+
'ueberzug',
35+
'lxml',
36+
'requests',
37+
'dbus-python',
38+
'beautifulsoup4'
39+
],
40+
python_requires='>=3.6',
41+
include_package_data=True)
File renamed without changes.

0 commit comments

Comments
 (0)