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
19 lines (18 loc) · 664 Bytes
/
Copy pathsetup.py
File metadata and controls
19 lines (18 loc) · 664 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup, find_packages
setup(
name='botbuilder-core',
version='4.0.0-a0',
url='https://www.github.com/Microsoft/botbuilder-python',
long_description='Microsoft Bot Framework Bot Builder SDK for Python. Build intelligent bots that scale.',
license='MIT',
author='Microsoft',
description='Microsoft Bot Framework Bot Builder',
packages=["botbuilder.core"],
classifiers=[
'Programming Language :: Python',
'Intended Audience :: Bot Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent'
]
)