16 lines
No EOL
473 B
Python
16 lines
No EOL
473 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="1.0.0",
|
|
description="Voxtelesys Voice API integration for ERPNext Helpdesk",
|
|
author="Broadcast Management Group",
|
|
author_email="it@broadcastmgmt.com",
|
|
packages=find_packages(),
|
|
zip_safe=False,
|
|
include_package_data=True,
|
|
install_requires=install_requires,
|
|
) |