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