hb-downloader/setup.py

12 lines
260 B
Python
Raw Normal View History

2024-03-07 21:18:14 +01:00
from setuptools import setup
with open('requirements.txt') as f:
install_requires = f.read().splitlines()
setup(
name = 'hb-downloader',
version = '0.1',
install_requires=install_requires,
scripts=['hb-downloader.py',],
)