-
-
Notifications
You must be signed in to change notification settings - Fork 2
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
1 changed file
with
12 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,29 @@ | ||
from setuptools import setup, find_packages | ||
|
||
VERSION = '1.0.1' | ||
DESCRIPTION = 'Python Mailing Library' | ||
LONG_DESCRIPTION = 'A package that allows to send mails from python environment' | ||
VERSION = "1.0.2" | ||
DESCRIPTION = "Python Mailing Library" | ||
with open("README.md", "r", encoding = "utf-8") as fh: | ||
long_description = fh.read() | ||
|
||
setup( | ||
name="mailpad", | ||
version=VERSION, | ||
author="Shivansh Dwivedi", | ||
author_email="<[email protected]>", | ||
description=DESCRIPTION, | ||
long_description_content_type="text/markdown", | ||
long_description=LONG_DESCRIPTION, | ||
long_description=long_description, | ||
long_description_content_type = "text/markdown", | ||
url = "https://mailpad.tech/", | ||
packages=find_packages(), | ||
install_requires=['langchain'], | ||
keywords=['mailpad','python', 'mail', 'email', 'email client', 'smtp'], | ||
classifiers=[ | ||
"Development Status :: 3 - Alpha", | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"Programming Language :: Python :: 3", | ||
"Operating System :: Unix", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Operating System :: Microsoft :: Windows", | ||
"Intended Audience :: Science/Research", | ||
"Intended Audience :: Information Technology", | ||
"Programming Language :: Python", | ||
"Operating System :: OS Independent", | ||
], | ||
license="MIT", | ||
) |