diff --git a/setup.py b/setup.py index cf27757..40faa9c 100644 --- a/setup.py +++ b/setup.py @@ -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 # @@ -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. """ )