initial commit
[utils.git] / setup.py
1 from setuptools import setup, find_packages
2
3 install_requires = [
4 "python-bugzilla",
5 ]
6
7 setup(
8 name="libre-soc-utils",
9 version="0.0.1",
10 author="Jacob Lifshay",
11 author_email="programmerjake@gmail.com",
12 url="https://git.libre-soc.org/?p=util",
13 license="LGPL-2.1-or-later",
14 packages=find_packages("src"),
15 package_dir={"": "src"},
16 zip_safe=False,
17 entry_points={
18 "console_scripts": [
19 "budget-sync=budget_sync:main",
20 ],
21 },
22 install_requires=install_requires,
23 )