-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
29 lines (28 loc) · 861 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
25
26
27
28
29
import os
from setuptools import setup, find_packages
setup(
name = "whatsapp-cli",
version = "0.1.3",
author = "yausername",
description = "CLI for whatsapp",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
license = "MIT",
keywords = [ "whatsapp", "pushbullet", "whatsapp cli", "chat bots" ],
url = "https://github.com/yausername/whatsapp-cli",
packages=find_packages(),
package_data={'whatsappCli.feed': ['data/*.json']},
entry_points = {
'console_scripts': ['whatsapp-cli=whatsappCli.__main__:main'],
},
install_requires=[
'requests',
'websocket-client',
'click',
],
classifiers=[
"Environment :: Console",
"Environment :: Console :: Curses",
"License :: OSI Approved :: MIT License",
],
)