mirror of https://github.com/ekimekim/wubloader
17 lines
326 B
Python
17 lines
326 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name = "wubloader-downloader",
|
|
version = "0.0.0",
|
|
packages = find_packages(),
|
|
install_requires = [
|
|
"argh",
|
|
"python-dateutil",
|
|
"gevent",
|
|
"monotonic",
|
|
"prometheus-client==0.7.1", # locked version as we rely on internals
|
|
"requests",
|
|
"wubloader-common",
|
|
],
|
|
)
|