mirror of
https://zotify.xyz/zotify/zotify.git
synced 2025-06-22 21:56:43 +00:00
todo: add global config support
This commit is contained in:
parent
1eef9756fd
commit
70da426463
15 changed files with 197 additions and 157 deletions
22
setup.py
22
setup.py
|
@ -1,7 +1,6 @@
|
|||
import pathlib
|
||||
from setuptools import setup
|
||||
import setuptools
|
||||
|
||||
from distutils.core import setup
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
|
||||
# The directory containing this file
|
||||
|
@ -13,17 +12,24 @@ README = (HERE / "README.md").read_text()
|
|||
# This call to setup() does all the work
|
||||
setup(
|
||||
name="zotify",
|
||||
version="0.5.3",
|
||||
version="0.6.0",
|
||||
author="Zotify",
|
||||
description="A music and podcast downloader.",
|
||||
long_description=README,
|
||||
long_description_content_type="text/markdown",
|
||||
url="https://gitlab.com/zotify/zotify.git",
|
||||
author="zotify",
|
||||
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',
|
||||
],
|
||||
},
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3.9",
|
||||
"Programming Language :: Python :: 3.10",
|
||||
],
|
||||
packages=['zotify'],
|
||||
install_requires=['ffmpy', 'music_tag', 'Pillow', 'protobuf', 'tabulate', 'tqdm',
|
||||
'librespot @ https://github.com/kokarare1212/librespot-python/archive/refs/heads/rewrite.zip'],
|
||||
include_package_data=True,
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue