2022-02-12 08:48:27 +01:00
|
|
|
from pathlib import Path
|
2022-02-02 09:56:57 +01:00
|
|
|
from distutils.core import setup
|
|
|
|
from setuptools import setup, find_packages
|
2021-12-26 06:21:10 +01:00
|
|
|
|
|
|
|
|
|
|
|
# The directory containing this file
|
2022-02-12 08:48:27 +01:00
|
|
|
HERE = Path(__file__).parent
|
2021-12-26 06:21:10 +01:00
|
|
|
|
|
|
|
# The text of the README file
|
|
|
|
README = (HERE / "README.md").read_text()
|
|
|
|
|
|
|
|
# This call to setup() does all the work
|
|
|
|
setup(
|
|
|
|
name="zotify",
|
2022-02-16 10:10:37 +01:00
|
|
|
version="0.6.1",
|
2022-02-12 08:48:27 +01:00
|
|
|
author="Zotify Contributors",
|
2021-12-26 06:21:10 +01:00
|
|
|
description="A music and podcast downloader.",
|
|
|
|
long_description=README,
|
|
|
|
long_description_content_type="text/markdown",
|
2022-02-02 09:56:57 +01:00
|
|
|
url="https://gitlab.com/team-zotify/zotify.git",
|
|
|
|
package_data={'': ['README.md', 'LICENSE']},
|
|
|
|
packages=['zotify'],
|
|
|
|
include_package_data=True,
|
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'zotify=zotify.__main__:main',
|
|
|
|
],
|
|
|
|
},
|
2021-12-26 06:21:10 +01:00
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python :: 3.9",
|
2022-02-02 09:56:57 +01:00
|
|
|
"Programming Language :: Python :: 3.10",
|
2021-12-26 06:21:10 +01:00
|
|
|
],
|
2022-02-12 08:48:27 +01:00
|
|
|
install_requires=['ffmpy', 'music_tag', 'Pillow', 'protobuf', 'pwinput', 'tabulate', 'tqdm',
|
2021-12-26 06:21:10 +01:00
|
|
|
'librespot @ https://github.com/kokarare1212/librespot-python/archive/refs/heads/rewrite.zip'],
|
|
|
|
)
|