Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 5 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,13 @@
# coding: utf-8

"""
Aspose.Email Cloud API Reference

No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501

OpenAPI spec version: 3.0

Generated by: https://github.com/swagger-api/swagger-codegen.git
Aspose.Email Cloud is a REST API for creating email applications that work with common email file formats. It lets developers manipulate message formats such as Outlook MSG, EML and MHT files.
"""


from setuptools import setup, find_packages # noqa: H301

NAME = "AsposeEmailCloudSdk"
NAME = "aspose-email-cloud"
VERSION = "19.11.0"
# To install the library, run the following
#
Expand All @@ -33,14 +27,14 @@
setup(
name=NAME,
version=VERSION,
description="Aspose.Email Cloud API Reference",
description="Aspose.Email Cloud API",
author_email="",
url="",
keywords=["Swagger", "Aspose.Email Cloud API Reference"],
keywords=["Swagger", "Aspose.Email Cloud API"],
install_requires=REQUIRES,
packages=find_packages(),
include_package_data=True,
long_description="""\
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
Aspose.Email Cloud is a REST API for creating email applications that work with common email file formats. It lets developers manipulate message formats such as Outlook MSG, EML and MHT files.
"""
)