Skip to content

Commit 44237ee

Browse files
committed
finalized name
1 parent 6db22f4 commit 44237ee

6 files changed

Lines changed: 16 additions & 27 deletions

File tree

samples/sample_connector_usage/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ This sample shows:
6060
1. **Python 3.10+** - Async/await support required
6161
2. **Azure Workflows Connector SDK** - Install via pip:
6262
```bash
63-
pip install <TBD>
63+
pip install azure-connectors
6464
```
6565
3. **Generated connector code** - Use LogicAppsCompiler CLI (see below)
6666

@@ -79,7 +79,7 @@ To use real connectors, generate client code using the LogicAppsCompiler CLI:
7979

8080
```bash
8181
# Navigate to the BPM repository
82-
cd c:\Users\victoriahall\Documents\repos\AzureUX-BPM
82+
cd ...\AzureUX-BPM
8383

8484
# Build the generator
8585
dotnet build .\src\tools\CodefulSdkGenerator\LogicAppsCompiler.Cli -c Release
@@ -196,7 +196,7 @@ See [GENERATION.md](../../GENERATION.md) for the complete list.
196196
## Next Steps
197197

198198
1. Generate connector code for your needed connectors
199-
2. Install the SDK: `pip install <TBD>`
199+
2. Install the SDK: `pip install azure-connectors`
200200
3. Get connection runtime URL from Azure Portal
201201
4. Use typed clients in your application
202202
5. Deploy to Azure Functions or run locally
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<TBD>
1+
azure-connectors

samples/sample_connector_usage/sample_connector_usage_office365.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
3. Connection runtime URL from Azure Portal
1212
1313
Installation:
14-
pip install <TBD>
14+
pip install azure-connectors
1515
1616
Usage:
1717
Set environment variable:
@@ -66,7 +66,7 @@ async def example_2_send_email():
6666
"""Example 2: Send an HTML email."""
6767
print("\n=== Example 2: Send Email ===")
6868

69-
to_address = os.environ.get("TEST_EMAIL_TO", "victoriahall@microsoft.com")
69+
to_address = os.environ.get("TEST_EMAIL_TO", "<YOUR-EMAIL>@microsoft.com")
7070

7171
credential = DefaultAzureCredential()
7272

@@ -120,7 +120,7 @@ async def example_4_draft_and_send_email():
120120
"""Example 4: Draft an email and then send it."""
121121
print("\n=== Example 4: Draft and Send Email ===")
122122

123-
to_address = os.environ.get("TEST_EMAIL_TO", "victoriahall@microsoft.com")
123+
to_address = os.environ.get("TEST_EMAIL_TO", "<YOUR-EMAIL>@microsoft.com")
124124

125125
credential = DefaultAzureCredential()
126126

samples/sample_connector_usage/sample_connector_usage_sharepoint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
4. SharePoint site URL
1313
1414
Installation:
15-
pip install <TBD>
15+
pip install azure-connectors
1616
1717
Usage:
1818
Set environment variables:

samples/sample_connector_usage/sample_connector_usage_teams.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
3. Connection runtime URL from Azure Portal
1010
1111
Installation:
12-
pip install <TBD>
12+
pip install azure-connectors
1313
1414
Usage:
1515
python sample_teams_usage.py

src/pyproject.toml

Lines changed: 7 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
2-
name = "<TBD>"
3-
version = "0.1.0dev1"
2+
name = "azure-connectors"
3+
version = "0.1.0dev2"
44
requires-python = ">=3.10"
55
description = "Azure Logic Apps Connector SDK for Python"
66
authors = [
@@ -9,7 +9,6 @@ authors = [
99
keywords = ["azure", "connectors", "logic-apps",
1010
"python", "serverless"]
1111
classifiers = [
12-
"Development Status :: 3 - Alpha",
1312
"Programming Language :: Python",
1413
"Programming Language :: Python :: 3",
1514
"Programming Language :: Python :: 3.10",
@@ -25,13 +24,9 @@ classifiers = [
2524
]
2625
dependencies = [
2726
"aiohttp",
28-
"azure-identity-aio",
27+
"azure-identity[aio]",
2928
]
3029

31-
[project.urls]
32-
Documentation = ""
33-
Repository = ""
34-
3530
[project.optional-dependencies]
3631
dev = [
3732
"flake8==6.*",
@@ -49,13 +44,7 @@ dev = [
4944
"pytest-rerunfailures",
5045
]
5146

52-
[build-system]
53-
requires = ["setuptools>=61.0", "setuptools-scm"]
54-
build-backend = "setuptools.build_meta"
55-
56-
[tool.setuptools]
57-
packages = ["azure.connectors"]
58-
59-
60-
[tool.setuptools.package-data]
61-
azure.connectors = ["py.typed"]
47+
[tool.setuptools.packages.find]
48+
exclude = [
49+
'src', 'azure', 'docs', 'tests*', 'samples', 'scripts'
50+
]

0 commit comments

Comments
 (0)