Skip to content

Commit

Permalink
Updated Long Description
Browse files Browse the repository at this point in the history
  • Loading branch information
shvuuuu committed Aug 16, 2023
1 parent 19f6554 commit 0954130
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions setup.py
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="<me@shivanshdwivedi.tech>",
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",
)

0 comments on commit 0954130

Please sign in to comment.