-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 782 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
setup(
name='cm_whatsapp',
version='0.1.1',
description='Whatsapp-auto-messaging through cm.com',
url='https://github.com/nikhil130yadav/whatsapp_msg_cm.com',
author='Nikil Yadav',
author_email='nikhil.nikhil2008@gmail.com',
license='BSD 2-clause',
#packages=['cm_com_whatsappapi'],
install_requires=['requests',
'json','os'
],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)