Skip to content

Commit

Permalink
Add SDK files to setup.py for EventGrid (#4221)
Browse files Browse the repository at this point in the history
* First version of Azure EventGrid CLI

* Added azure_bdist_wheel.py, setup.cfg, and manifest.in files.

* Added license headers in 34 files, updated an example in the help file to include additional info.

* Aliased --is-subject-case-sensitive to --subject-case-sensitive.

* Add SDK, models and operations to setup.py

* Updated history to account for this change.
  • Loading branch information
kalyanaj authored and derekbekoe committed Aug 15, 2017
1 parent 0b996d5 commit c3d8824
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
5 changes: 5 additions & 0 deletions src/command_modules/azure-cli-eventgrid/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
Release History
===============

unreleased
++++++++++++++++++

* Added SDK dependencies.

0.1.1 (2017-08-11)
++++++++++++++++++

Expand Down
5 changes: 4 additions & 1 deletion src/command_modules/azure-cli-eventgrid/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,10 @@
'azure',
'azure.cli',
'azure.cli.command_modules',
'azure.cli.command_modules.eventgrid'
'azure.cli.command_modules.eventgrid',
'azure.cli.command_modules.eventgrid.sdk',
'azure.cli.command_modules.eventgrid.sdk.models',
'azure.cli.command_modules.eventgrid.sdk.operations'
],
install_requires=DEPENDENCIES,
cmdclass=cmdclass
Expand Down

0 comments on commit c3d8824

Please sign in to comment.