mirror of
https://github.com/THIS-IS-NOT-A-BACKUP/zspotify.git
synced 2024-11-26 09:53:17 +01:00
added setup py for github ci/cd
This commit is contained in:
parent
a563ca2f13
commit
3b1bc1d5c4
31
setup.py
Normal file
31
setup.py
Normal file
@ -0,0 +1,31 @@
|
||||
import pathlib
|
||||
from setuptools import setup
|
||||
import setuptools
|
||||
|
||||
|
||||
|
||||
# The directory containing this file
|
||||
HERE = pathlib.Path(__file__).parent
|
||||
|
||||
# The text of the README file
|
||||
README = (HERE / "README.md").read_text()
|
||||
|
||||
# This call to setup() does all the work
|
||||
setup(
|
||||
name="zspotify",
|
||||
version="0.5.3",
|
||||
description="A spotify downloader.",
|
||||
long_description=README,
|
||||
long_description_content_type="text/markdown",
|
||||
url="https://github.com/Footsiefat/zspotify.git",
|
||||
author="logykk",
|
||||
author_email="logykk@mail.com",
|
||||
license="GPLv3",
|
||||
classifiers=[
|
||||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
||||
"Programming Language :: Python :: 3.9",
|
||||
],
|
||||
packages=['zspotify'],
|
||||
install_requires=['ffmpy', 'music_tag', 'Pillow', 'protobuf', 'tabulate', 'tqdm', 'git+https://github.com/kokarare1212/librespot-python'],
|
||||
include_package_data=True,
|
||||
)
|
Loading…
Reference in New Issue
Block a user