20 lines
588 B
Python
20 lines
588 B
Python
from setuptools import setup, find_packages
|
|
|
|
with open("requirements.txt") as f:
|
|
install_requires = [
|
|
line.strip()
|
|
for line in f.read().splitlines()
|
|
if line.strip() and not line.strip().startswith("#")
|
|
]
|
|
|
|
setup(
|
|
name="voxtelesys_integration",
|
|
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(),
|
|
zip_safe=False,
|
|
include_package_data=True,
|
|
install_requires=install_requires,
|
|
)
|