Spaces:
Build error
Build error
| # Copyright (c) Microsoft Corporation. All rights reserved. | |
| # Licensed under the MIT License. | |
| import os | |
| from setuptools import setup | |
| REQUIRES = [ | |
| "botbuilder-core>=4.9.0", | |
| "flask==2.2.5", | |
| ] | |
| root = os.path.abspath(os.path.dirname(__file__)) | |
| with open(os.path.join(root, "functionaltestbot", "about.py")) as f: | |
| package_info = {} | |
| info = f.read() | |
| exec(info, package_info) | |
| setup( | |
| name=package_info["__title__"], | |
| version=package_info["__version__"], | |
| url=package_info["__uri__"], | |
| author=package_info["__author__"], | |
| description=package_info["__description__"], | |
| keywords="botframework azure botbuilder", | |
| long_description=package_info["__summary__"], | |
| license=package_info["__license__"], | |
| packages=["functionaltestbot"], | |
| install_requires=REQUIRES, | |
| dependency_links=["https://github.com/pytorch/pytorch"], | |
| 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", | |
| ], | |
| ) | |