hb-downloader/setup.py

15 lines
292 B
Python

"""Setup config"""
from setuptools import setup
with open("requirements.txt", encoding="UTF-8") as f:
install_requires = f.read().splitlines()
setup(
name="hb-downloader",
version="1.0",
install_requires=install_requires,
scripts=[
"hb_downloader.py",
],
)