forked from Ankit404butfound/PyWhatKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (37 loc) · 1.34 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
42
from distutils.core import setup
import setuptools
def readme() -> str:
with open(r'README.md') as f:
README = f.read()
return README
setup(
name='pywhatkit',
packages=setuptools.find_packages(),
version='4.2',
license='MIT',
description='PyWhatKit is a Python library for Sending whatsapp message at certain time, it has several other features too.',
author='Ankit Raj Mahapatra',
author_email='[email protected]',
url='https://github.com/Ankit404butfound/PyWhatKit',
download_url='https://github.com/Ankit404butfound/awesomepy/archive/1.0.tar.gz',
keywords=['sendwhatmsg', 'info', 'playonyt', 'search', 'watch_tutorial'],
install_requires=[
'pyautogui',
'wikipedia',
'requests',
'Pillow',
],
include_package_data=True,
long_description=readme(),
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)