19 lines
523 B
Python
19 lines
523 B
Python
from setuptools import setup
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
setup(
|
|
name="ezzdl",
|
|
version="3.0.0",
|
|
author="BarsTiger",
|
|
description="Cool download manager based on rich and its sample code",
|
|
long_description=long_description,
|
|
packages=["ezzdl"],
|
|
license='MIT',
|
|
url='https://github.com/BarsTiger/ezzdl',
|
|
long_description_content_type="text/markdown",
|
|
keywords=["threading", "thread", "decorator", "crossplatform"],
|
|
install_requires=["rich"]
|
|
)
|