v2.1: wire hooks for desk integration: setup.py
This commit is contained in:
parent
b3b595c8af
commit
984bb189dc
1 changed files with 7 additions and 3 deletions
10
setup.py
10
setup.py
|
|
@ -1,12 +1,16 @@
|
|||
from setuptools import setup, find_packages
|
||||
|
||||
with open("requirements.txt") as f:
|
||||
install_requires = f.read().strip().split("\n")
|
||||
install_requires = [
|
||||
line.strip()
|
||||
for line in f.read().splitlines()
|
||||
if line.strip() and not line.strip().startswith("#")
|
||||
]
|
||||
|
||||
setup(
|
||||
name="voxtelesys_integration",
|
||||
version="2.0.0",
|
||||
description="3CX/Voxtelesys inbound call webhook for Frappe Helpdesk",
|
||||
version="2.1.0",
|
||||
description="Voxtelesys Voice + SMS integration for ERPNext / Frappe Helpdesk",
|
||||
author="Broadcast Management Group",
|
||||
author_email="it@broadcastmgmt.com",
|
||||
packages=find_packages(),
|
||||
|
|
|
|||
Loading…
Reference in a new issue