voxtelesys_integration/setup.py

17 lines
476 B
Python
Raw Normal View History

2026-05-11 08:06:38 -04:00
from setuptools import setup, find_packages
with open("requirements.txt") as f:
install_requires = f.read().strip().split("\n")
setup(
name="voxtelesys_integration",
2026-05-11 09:14:02 -04:00
version="2.0.0",
description="3CX/Voxtelesys inbound call webhook for Frappe Helpdesk",
2026-05-11 08:06:38 -04:00
author="Broadcast Management Group",
author_email="it@broadcastmgmt.com",
packages=find_packages(),
zip_safe=False,
include_package_data=True,
install_requires=install_requires,
2026-05-11 09:14:02 -04:00
)