feat: update the package a bit, conform to pep8
This commit is contained in:
parent
867786099a
commit
fcf24cd5cd
6 changed files with 80 additions and 106 deletions
14
setup.py
14
setup.py
|
|
@ -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",
|
||||
],
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue