Skip to content

Commit 7871454

Browse files
Merge branch 'master' into develop
2 parents 40da9e4 + bcb8f32 commit 7871454

File tree

3 files changed

+48
-48
lines changed

3 files changed

+48
-48
lines changed

.github/workflows/pythonpublish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ jobs:
3131
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
3232
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
3333
run: |
34-
python setup.py sdist bdist_wheel
34+
python sdk/setup.py sdist bdist_wheel
3535
twine upload dist/*

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Aspose.Email Cloud is a REST API for creating email applications that work with
1515

1616
## How to use the SDK?
1717
The complete source code is available in the GIT repository.
18-
Use [reference documentation](https://github.com/aspose-email-cloud/aspose-email-cloud-python/blob/master/sdk/docs/README.md), [examples from this document](#usage-examples) and [wiki](https://github.com/aspose-email-cloud/aspose-email-cloud-python/wiki)
18+
Use [SDK tutorials](https://docs.aspose.cloud/display/emailcloud/SDK+Tutorials), [reference documentation](https://github.com/aspose-email-cloud/aspose-email-cloud-python/blob/master/sdk/docs/README.md) and [examples from this document](#usage-examples)
1919

2020
### Prerequisites
2121

sdk/setup.py

Lines changed: 46 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,46 @@
1-
# coding: utf-8
2-
3-
"""
4-
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.
5-
"""
6-
7-
8-
from setuptools import setup, find_packages # noqa: H301
9-
10-
NAME = "aspose-email-cloud"
11-
VERSION = "20.5.0.93"
12-
# To install the library, run the following
13-
#
14-
# python setup.py install
15-
#
16-
# prerequisite: setuptools
17-
# http://pypi.python.org/pypi/setuptools
18-
19-
REQUIRES = [
20-
"certifi>=2017.4.17",
21-
"python-dateutil>=2.1",
22-
"six>=1.10",
23-
"urllib3>=1.23"
24-
]
25-
from os import path
26-
this_directory = path.abspath(path.dirname(__file__))
27-
with open(path.join(this_directory, "..", 'README.md'), encoding='utf-8') as f:
28-
long_description = f.read()
29-
30-
setup(
31-
name=NAME,
32-
version=VERSION,
33-
url='https://products.aspose.cloud/email/family',
34-
classifiers = [
35-
'License :: OSI Approved :: MIT License',
36-
],
37-
license = "License :: OSI Approved :: MIT License",
38-
description="Aspose.Email Cloud API",
39-
author_email="",
40-
keywords=["Swagger", "Aspose.Email Cloud API"],
41-
install_requires=REQUIRES,
42-
packages=find_packages(),
43-
include_package_data=True,
44-
long_description=long_description,
45-
long_description_content_type='text/markdown',
46-
)
1+
# coding: utf-8
2+
3+
"""
4+
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.
5+
"""
6+
7+
8+
from setuptools import setup, find_packages # noqa: H301
9+
10+
NAME = "aspose-email-cloud"
11+
VERSION = "20.5.0.93"
12+
# To install the library, run the following
13+
#
14+
# python setup.py install
15+
#
16+
# prerequisite: setuptools
17+
# http://pypi.python.org/pypi/setuptools
18+
19+
REQUIRES = [
20+
"certifi>=2017.4.17",
21+
"python-dateutil>=2.1",
22+
"six>=1.10",
23+
"urllib3>=1.23"
24+
]
25+
from os import path
26+
this_directory = path.abspath(path.dirname(__file__))
27+
with open(path.join(this_directory, "..", 'README.md'), encoding='utf-8') as f:
28+
long_description = f.read()
29+
30+
setup(
31+
name=NAME,
32+
version=VERSION,
33+
url='https://products.aspose.cloud/email/family',
34+
classifiers = [
35+
'License :: OSI Approved :: MIT License',
36+
],
37+
license = "License :: OSI Approved :: MIT License",
38+
description="Aspose.Email Cloud API",
39+
author_email="",
40+
keywords=["Swagger", "Aspose.Email Cloud API"],
41+
install_requires=REQUIRES,
42+
packages=find_packages(),
43+
include_package_data=True,
44+
long_description=long_description,
45+
long_description_content_type='text/markdown',
46+
)

0 commit comments

Comments
 (0)