24 lines
440 B
TOML
24 lines
440 B
TOML
[project]
|
|
name = "inventory"
|
|
version = "0.1.0"
|
|
description = "A Flask app for tracking inventory."
|
|
requires-python = ">=3.9"
|
|
dependencies = [
|
|
"alembic",
|
|
"beautifulsoup4",
|
|
"flask",
|
|
"flask_sqlalchemy",
|
|
"html5lib",
|
|
"pandas",
|
|
"pyodbc",
|
|
"python-dotenv",
|
|
"waitress",
|
|
"Werkzeug"
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["setuptools"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools]
|
|
packages = ["inventory"]
|