Skip to content

Commit

Permalink
Merge pull request #22 from demisto/content-build-1.x
Browse files Browse the repository at this point in the history
Content build 1.x
  • Loading branch information
glicht authored Oct 10, 2019
2 parents ba19570 + 137c2ab commit f2090aa
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -87,3 +87,7 @@ ENV/

# Rope project settings
.ropeproject
.pytest_cache
.swagger-codegen
venv*
.vscode
12 changes: 10 additions & 2 deletions README.md
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

Expand Down
11 changes: 11 additions & 0 deletions setup.py
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'],
)

0 comments on commit f2090aa

Please sign in to comment.