|
1 |
| -# coding=utf-8 |
2 |
| -# -------------------------------------------------------------------------- |
3 | 1 | # Copyright (c) Microsoft Corporation. All rights reserved.
|
4 |
| -# Licensed under the MIT License. See License.txt in the project root for |
5 |
| -# license information. |
6 |
| -# |
7 |
| -# Code generated by Microsoft (R) AutoRest Code Generator. |
8 |
| -# Changes may cause incorrect behavior and will be lost if the code is |
9 |
| -# regenerated. |
10 |
| -# -------------------------------------------------------------------------- |
11 |
| -# coding: utf-8 |
| 2 | +# Licensed under the MIT License. |
12 | 3 |
|
13 |
| -from setuptools import setup, find_packages |
| 4 | +from setuptools import setup |
14 | 5 |
|
15 | 6 | NAME = "botframework-connector"
|
16 |
| -VERSION = "3" |
17 |
| - |
18 |
| -# To install the library, run the following |
19 |
| -# |
20 |
| -# python setup.py install |
21 |
| -# |
22 |
| -# prerequisite: setuptools |
23 |
| -# http://pypi.python.org/pypi/setuptools |
24 |
| - |
| 7 | +VERSION = "4.0.0.a0" |
25 | 8 | REQUIRES = [
|
26 | 9 | "msrest>=0.2.0",
|
27 | 10 | "requests>=2.8.1",
|
28 | 11 | "cryptography>=2.1.4",
|
29 | 12 | "PyJWT>=1.5.3",
|
30 |
| - "botbuilder-schema"] |
| 13 | + "botbuilder-schema>=4.0.0.a0"] |
31 | 14 |
|
32 | 15 | setup(
|
33 | 16 | name=NAME,
|
34 | 17 | version=VERSION,
|
35 |
| - description="BotFrameworkConnector", |
36 |
| - author_email="", |
37 |
| - url="", |
38 |
| - keywords=["Swagger", "BotFrameworkConnector"], |
| 18 | + description="Microsoft Bot Framework Bot Builder SDK for Python.", |
| 19 | + author='Microsoft', |
| 20 | + url="https://www.github.com/Microsoft/botbuilder-python", |
| 21 | + keywords=["BotFrameworkConnector", "bots","ai", "botframework", "botbuilder"], |
39 | 22 | install_requires=REQUIRES,
|
40 | 23 | packages=["botframework.connector", "botframework.connector.auth", "botframework.connector.operations", "botframework.connector.models"],
|
41 | 24 | include_package_data=True,
|
42 |
| - long_description="""\ |
43 |
| - The Bot Connector REST API allows your bot to send and receive messages to channels configured in the |
44 |
| - [Bot Framework Developer Portal](https://dev.botframework.com). The Connector service uses industry-standard REST |
45 |
| - and JSON over HTTPS. |
46 |
| - Client libraries for this REST API are available. See below for a list. |
47 |
| - Many bots will use both the Bot Connector REST API and the associated [Bot State REST API](/en-us/restapi/state). The |
48 |
| - Bot State REST API allows a bot to store and retrieve state associated with users and conversations. |
49 |
| - Authentication for both the Bot Connector and Bot State REST APIs is accomplished with JWT Bearer tokens, and is |
50 |
| - described in detail in the [Connector Authentication](/en-us/restapi/authentication) document. |
51 |
| - # Client Libraries for the Bot Connector REST API |
52 |
| - * [Bot Builder for C#](/en-us/csharp/builder/sdkreference/) |
53 |
| - * [Bot Builder for Node.js](/en-us/node/builder/overview/) |
54 |
| - * Generate your own from the [Connector API Swagger file](https://raw.githubusercontent.com/Microsoft/BotBuilder/master/CSharp/Library/Microsoft.Bot.Connector.Shared/Swagger/ConnectorAPI.json) |
55 |
| - © 2016 Microsoft |
56 |
| - """ |
| 25 | + long_description="Microsoft Bot Framework Bot Builder SDK for Python.", |
| 26 | + license='MIT', |
| 27 | + classifiers=[ |
| 28 | + 'Programming Language :: Python', |
| 29 | + 'Intended Audience :: Bot Developers', |
| 30 | + 'License :: OSI Approved :: MIT License', |
| 31 | + 'Operating System :: OS Independent' |
| 32 | + ] |
57 | 33 | )
|
0 commit comments