Add inventory management templates and utility functions
- Created HTML templates for inventory index, layout, search, settings, table, user, and worklog. - Implemented utility functions for eager loading relationships in SQLAlchemy. - Added validation mixin for form submissions. - Updated project configuration files (pyproject.toml and setup.cfg) for package management.
This commit is contained in:
parent
602bb77e22
commit
9803db17ab
51 changed files with 76 additions and 16 deletions
21
pyproject.toml
Normal file
21
pyproject.toml
Normal file
|
@ -0,0 +1,21 @@
|
|||
[project]
|
||||
name = "inventory"
|
||||
version = "0.1.0"
|
||||
description = "A Flask app for tracking inventory."
|
||||
requires-python = ">=3.9"
|
||||
dependencies = [
|
||||
"python-dotenv",
|
||||
"flask",
|
||||
"flask_sqlalchemy",
|
||||
"pandas",
|
||||
"pyodbc",
|
||||
"beautifulsoup4",
|
||||
"alembic"
|
||||
]
|
||||
|
||||
[build-system]
|
||||
requires = ["setuptools"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[tool.setuptools]
|
||||
packages = ["inventory"]
|
Loading…
Add table
Add a link
Reference in a new issue