Initial commit: fixtures, hooks, doctype events, API, and JS
This commit is contained in:
@@ -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,
|
||||
)
|
||||
Reference in New Issue
Block a user