Initial commit: fixtures, hooks, doctype events, API, and JS

This commit is contained in:
Westech Admin
2026-05-16 23:35:51 +00:00
commit 3a3c01194e
35 changed files with 16910 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
from setuptools import setup, find_packages
with open("requirements.txt") as f:
install_requires = f.read().strip().split("\n")
setup(
name="westech_r2",
version="0.0.1",
description="R2 Tracking for Westech Recyclers",
author="Westech",
author_email="",
packages=find_packages(),
zip_safe=False,
include_package_data=True,
install_requires=install_requires,
)