-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (16 loc) · 771 Bytes
/
setup.py
File metadata and controls
19 lines (16 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup, find_packages
with open("requirements.txt") as f:
install_requires = f.read().strip().split("\n")
# get version from __version__ variable in frappe_msg91_integration/__init__.py
from frappe_msg91_integration import __version__ as version
setup(
name="frappe_msg91_integration",
version=version,
description="This app provides integration with the MSG91 SMS gateway for Frappe Framework. It allows you to configure and use MSG91 for sending SMS messages and handling OTP functionality, overriding the default SMS settings.",
author="Dhwani RIS",
author_email="bhushan.barbuddhe@dhwaniris.com",
packages=find_packages(),
zip_safe=False,
include_package_data=True,
install_requires=install_requires
)