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.
This commit is contained in:
timmyhadwen
2026-02-24 09:10:31 +10:00
committed by Tim Hadwen
commit 1046bc2380
5 changed files with 267 additions and 0 deletions

17
setup.py Normal file
View File

@@ -0,0 +1,17 @@
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',
],
},
)