Skip to content

Commit

Permalink
updated meta information and instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
ivg committed Aug 25, 2016
1 parent b0190d7 commit 083bbbc
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 4 deletions.
22 changes: 20 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,32 @@ BAP python bindings
Install python bindings with pip:

```bash
$ pip install git+git://github.com/BinaryAnalysisPlatform/bap-python.git
$ pip install bap
```

Alternatively you can just copy paste files into your project, or clone it
with git-subtree, or whatever...


## Installing low-level bindings

An optional low-level interface, called [rpc] depends on requests, so
install [requests] package from pip and `bap-server` from opam.
install [requests] package from pip and `bap-server` from opam:

```bash
$ pip install bap[rpc]
$ opam install bap
```

## Installing development version

You can also install directly from github:

```bash
pip install git+git://github.com/BinaryAnalysisPlatform/bap-python.git
````

# Using

```python
>>> import bap
Expand Down
17 changes: 15 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,23 @@

setup (
name = 'bap',
version = '1.0.0~alpha',
version = '1.0.0',
description = 'Python bindings to Binary Analysis Platform (BAP)',
author = 'BAP Team',
url = 'https://github.com/BinaryAnalysisPlatform/bap-python',
maintainer = 'Ivan Gotovchits',
maintainer_email = '[email protected]',
license = 'MIT',
package_dir = {'bap' : 'src'},
packages = ['bap'],
extras_require = {
'rpc' : ['requests']
}
},

classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Disassemblers',
'Topic :: Security'
]
)

0 comments on commit 083bbbc

Please sign in to comment.