forked from Ankit404butfound/PyWhatKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (34 loc) · 1.3 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
39
40
41
from distutils.core import setup
import setuptools
def readme() -> str:
with open(r"README.md") as f:
README = f.read()
return README
with open("requirements.txt", "r") as f:
reqs = [line.strip() for line in f]
setup(
name="pywhatkit",
packages=setuptools.find_packages(),
version="5.3",
license="MIT",
description="PyWhatKit is a Simple and Powerful WhatsApp Automation Library with many useful Features",
author="Ankit Raj Mahapatra",
author_email="[email protected]",
url="https://github.com/Ankit404butfound/PyWhatKit",
download_url="https://github.com/Ankit404butfound/PyWhatKit/archive/refs/tags/5.2.zip",
keywords=["sendwhatmsg", "info", "playonyt", "search", "watch_tutorial"],
install_requires=reqs,
package_data={"pywhatkit": ["py.typed"]},
include_package_data=True,
long_description=readme(),
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)