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
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
with open("requirements.txt") as f:
|
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(
|
setup(
|
||||||
name="voxtelesys_integration",
|
name="voxtelesys_integration",
|
||||||
version="2.0.0",
|
version="2.1.0",
|
||||||
description="3CX/Voxtelesys inbound call webhook for Frappe Helpdesk",
|
description="Voxtelesys Voice + SMS integration for ERPNext / Frappe Helpdesk",
|
||||||
author="Broadcast Management Group",
|
author="Broadcast Management Group",
|
||||||
author_email="it@broadcastmgmt.com",
|
author_email="it@broadcastmgmt.com",
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue