-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (36 loc) · 993 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
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="ptithiwa",
version="0.0.1",
description="ptithiwa - WhatsApp app bot: Automate WhatsApp app with appium in python.",
py_modules=[],
packages=find_packages(),
package_dir={"ptithiwa": "ptithiwa"},
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': [
'ptithiwa = ptithiwa.__main__:main',
],
},
url="https://github.com/Maskgirl/tithiwa",
author="SuLagna Mukherjee",
author_email="tithimukherjee12@gmail.com",
install_requires=[
"Appium-Python-Client",
],
extras_require={
"dev": [
"",
"",
"",
],
},
)