mirror of
https://github.com/oskvr37/tiddl.git
synced 2026-06-13 04:05:08 +03:00
16 lines
452 B
Python
16 lines
452 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="tiddl",
|
|
version="0.1.0",
|
|
description="TIDDL (Tidal Downloader) is a Python CLI application that allows downloading Tidal tracks.",
|
|
long_description=open('README.md').read(),
|
|
long_description_content_type='text/markdown',
|
|
readme="README.md",
|
|
author="oskvr37",
|
|
packages=find_packages(),
|
|
entry_points={
|
|
"console_scripts": ["tiddl=tiddl:main"],
|
|
},
|
|
)
|