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
31 lines (28 loc) · 1007 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 1007 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
31
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from setuptools import setup
NAME = "botbuilder-core"
VERSION = "4.0.0.a0"
REQUIRES = [
"botbuilder-schema>=4.0.0.a0",
"botframework-connector>=4.0.0.a0"]
setup(
name=NAME,
version=VERSION,
url='https://www.github.com/Microsoft/botbuilder-python',
author='Microsoft',
description='Microsoft Bot Framework Bot Builder',
keywords=["BotBuilderCore", "bots","ai", "botframework", "botbuilder"],
long_description='Microsoft Bot Framework Bot Builder SDK for Python.',
license='MIT',
packages=["botbuilder.core"],
install_requires=REQUIRES,
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',
]
)