Files
inventree-print-demand/setup.py
timmyhadwen 1046bc2380 Initial implementation of 3D Print Demand plugin
Dashboard plugin for InvenTree showing aggregated demand for 3D printed
parts across open build and sales orders, with colour-coded deficit column.
2026-02-24 09:13:41 +10:00

18 lines
492 B
Python

from setuptools import setup, find_packages
setup(
name='inventree-print-demand',
version='0.1.0',
description='InvenTree plugin to show aggregated 3D print demand across open orders',
author='Micromelon',
license='MIT',
packages=find_packages(),
include_package_data=True,
install_requires=['inventree'],
entry_points={
'inventree_plugins': [
'PrintDemandPlugin = inventree_print_demand.plugin:PrintDemandPlugin',
],
},
)