-
-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
59 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
from os import path | ||
from setuptools import setup | ||
|
||
# read the contents of your description file | ||
|
||
this_directory = path.abspath(path.dirname(__file__)) | ||
with open(path.join(this_directory, "description.md"), encoding="utf-8") as f: | ||
long_description = f.read() | ||
|
||
setup( | ||
name="heyoo", | ||
version="0.0.1", | ||
description="Opensource python wrapper to WhatsApp Cloud API", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/Neurotech-HQ/heyoo", | ||
download_url="", | ||
author="Jordan Kalebu", | ||
author_email="isaackeinstein@gmail.com", | ||
license="MIT", | ||
packages=["heyoo"], | ||
keywords=[ | ||
"heyoo", | ||
"heyoo-libary", | ||
"WhatsApp Cloud API Wrapper", | ||
"PyWhatsApp", | ||
"WhatsApp API in Python", | ||
], | ||
python_requires=">=3.6", | ||
classifiers=[ | ||
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Developers", | ||
"Topic :: Software Development :: Build Tools", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
], | ||
) |