Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -121,3 +121,4 @@ cython_debug/

# JetBrains Rider
*.sln.iml
.idea/
26 changes: 13 additions & 13 deletions libraries/Client/microsoft-agents-client/setup.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
from setuptools import setup, find_namespace_packages

setup(
name='microsoft-agents-client',
version='0.0.0a1',
name="microsoft-agents-client",
version="0.0.0a1",
packages=find_namespace_packages(),
install_requires=[
'microsoft-agents-protocol',
"microsoft-agents-protocol",
],
author='Microsoft Corporation',
description='A client library for Microsoft Agents',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/yourusername/microsoft-agents-client',
author="Microsoft Corporation",
description="A client library for Microsoft Agents",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/yourusername/microsoft-agents-client",
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.8',
)
python_requires=">=3.8",
)
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .activity_types import ActivityTypes

__all__ = ["ActivityTypes"]
__all__ = ["ActivityTypes"]
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from enum import Enum


class ActivityTypes(str, Enum):
message = "message"
contact_relation_update = "contactRelationUpdate"
Expand All @@ -18,4 +19,4 @@ class ActivityTypes(str, Enum):
trace = "trace"
handoff = "handoff"
command = "command"
command_result = "commandResult"
command_result = "commandResult"
24 changes: 12 additions & 12 deletions libraries/Core/Protocols/microsoft-agents-protocol/setup.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
from setuptools import setup, find_namespace_packages

setup(
name='microsoft-agents-protocol',
version='0.0.0a1',
name="microsoft-agents-protocol",
version="0.0.0a1",
packages=find_namespace_packages(),
install_requires=[
# Add your project dependencies here
],
author='Microsoft Corporation',
description='A protocol library for Microsoft Agents',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/microsoft/microsoft-agents-protocol',
author="Microsoft Corporation",
description="A protocol library for Microsoft Agents",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/microsoft/microsoft-agents-protocol",
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.9',
)
python_requires=">=3.9",
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
def test_placeholder():
pass