Add setup.py
This commit is contained in:
parent
1d84bd53d1
commit
986d596963
1 changed files with 16 additions and 0 deletions
16
setup.py
Normal file
16
setup.py
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
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,
|
||||
)
|
||||
Loading…
Reference in a new issue