16 lines
476 B
Python
16 lines
476 B
Python
from setuptools import setup, find_packages
|
|
|
|
with open("requirements.txt") as f:
|
|
install_requires = f.read().strip().split("\n")
|
|
|
|
setup(
|
|
name="voxtelesys_integration",
|
|
version="2.0.0",
|
|
description="3CX/Voxtelesys inbound call webhook for Frappe Helpdesk",
|
|
author="Broadcast Management Group",
|
|
author_email="it@broadcastmgmt.com",
|
|
packages=find_packages(),
|
|
zip_safe=False,
|
|
include_package_data=True,
|
|
install_requires=install_requires,
|
|
)
|