forked from microsoft/botbuilder-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 982 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (27 loc) · 982 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from setuptools import setup
NAME = "botbuilder-schema"
VERSION = "4.0.0.a0"
REQUIRES = ["msrest>=0.2.0"]
setup(
name=NAME,
version=VERSION,
description="BotBouilder Schema",
author="Microsoft",
url="https://github.com/Microsoft/botbuilder-python",
keywords=["BotBuilderSchema", "bots","ai", "botframework", "botbuilder"],
long_description="This package contains the schema classes for using the Bot Framework.",
license='MIT',
install_requires=REQUIRES,
packages=["botbuilder.schema"],
include_package_data=True,
classifiers=[
'Programming Language :: Python :: 3.6',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Development Status :: 3 - Alpha',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
]
)