X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=setup.py;h=72ed1ac6306aaba4d764e2fb907c8e883d792815;hb=25f024fc5d2a1612e56cb230995b74e5f7495377;hp=78dd77f2788e4f8c3bda1c6a233f997432845f28;hpb=a8f6307391411b3f4100e4cbe2c04592cfb22c5d;p=utils.git diff --git a/setup.py b/setup.py index 78dd77f..72ed1ac 100644 --- a/setup.py +++ b/setup.py @@ -2,6 +2,7 @@ from setuptools import setup, find_packages install_requires = [ "python-bugzilla", + "toml", ] setup( @@ -16,7 +17,7 @@ setup( zip_safe=False, entry_points={ "console_scripts": [ - "budget-sync=budget_sync:main", + "budget-sync=budget_sync.main:main", ], }, install_requires=install_requires,