12 lines
260 B
Python
12 lines
260 B
Python
|
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',],
|
||
|
)
|