|
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