feat: update the package a bit, conform to pep8

This commit is contained in:
CronyAkatsuki 2025-11-06 20:58:13 +01:00
parent 867786099a
commit fcf24cd5cd
6 changed files with 80 additions and 106 deletions

View file

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