-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
38 lines (36 loc) · 1.05 KB
/
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
30
31
32
33
34
35
36
37
38
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="tithiwa",
version="0.1.30",
description="tithiwa - Web WhatsApp bot: Automate Web WhatsApp with selenium in python.",
py_modules=["chatroom", "constants", "flextithiwa", "group", "session", "messages", "tithiwa"],
packages=find_packages(),
package_dir={"tithiwa": "tithiwa"},
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
],
license="MIT License",
entry_points={
'console_scripts': [
'tithiwa = tithiwa.__main__:main',
],
},
url="https://github.com/Tithibots/tithiwa",
author="Navpreet Devpuri and Sulagna Mukherjee",
author_email="NavpreetDevpuri@gmail.com",
install_requires=[
"selenium",
],
extras_require={
"dev": [
"",
"",
"",
],
},
)