-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from demisto/content-build-1.x
Content build 1.x
- Loading branch information
Showing
3 changed files
with
25 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -87,3 +87,7 @@ ENV/ | |
|
||
# Rope project settings | ||
.ropeproject | ||
.pytest_cache | ||
.swagger-codegen | ||
venv* | ||
.vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,14 @@ | ||
# Demisto SDK for Python | ||
# Demisto Client for Python | ||
|
||
A Python library for the Demisto API. | ||
A Python library for the Demisto API. | ||
|
||
**Note**: This is version 1.x of the library and is officially deprecated (maintenance-mode only). We recommend using version 2.x. | ||
|
||
## Installation | ||
Install via pip: | ||
``` | ||
pip install git+https://github.com/demisto/[email protected] | ||
``` | ||
|
||
## Usage | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/usr/bin/env python | ||
|
||
from distutils.core import setup | ||
|
||
setup(name='demisto', | ||
version='1.0.1', | ||
description='Demisto Client for python', | ||
author='Slavik Markovich', | ||
url='https://github.com/demisto/demisto-py', | ||
packages=['demisto'], | ||
) |