Skip to content

Commit

Permalink
Ready for new release
Browse files Browse the repository at this point in the history
- bumped version
- new configs
- updated docs
  • Loading branch information
tmr232 committed Mar 7, 2020
1 parent f5b2ab5 commit 2864c99
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 4 deletions.
12 changes: 12 additions & 0 deletions README.rst
Expand Up @@ -20,6 +20,12 @@ For latest version (IDA7.4 & Python3):
pip3 install -U git+https://github.com/tmr232/Sark.git#egg=Sark
Or from PyPI:

.. code:: bash
pip3 install sark
For more info see `here <http://sark.readthedocs.org/en/latest/Installation.html>`_.
Expand All @@ -40,6 +46,12 @@ To install Sark for older IDA use:
pip2 install -U git+https://github.com/tmr232/Sark.git@IDA-6.x#egg=Sark
Or from PyPI:

.. code:: bash
pip2 install "sark<7.4"
Dependencies
------------
Expand Down
18 changes: 18 additions & 0 deletions docs/Installation.rst
Expand Up @@ -18,6 +18,24 @@ For older versions of IDA (7.3 or lower), use:
And see :doc:`Support`

Alternatively, you can install Sark directly from PyPI. The Sark version will
match the IDA versions, more or less. So for 7.4 or higher, you'll just want
the latest:

.. code:: bash
pip3 install sark
But for 7.3 or earlier, you'll want a version smaller than 7.4:

.. code:: bash
pip2 install "sark<7.4"
That said, installing from the repo is the only way to be sure you get the
latest version of Sark.


To install the IDA Plugins (optional) download the entire repository
from `GitHub <https://github.com/tmr232/Sark>`__ and read :doc:`plugins/installation`.
Expand Down
4 changes: 3 additions & 1 deletion docs/index.rst
Expand Up @@ -13,7 +13,9 @@ Sark actively supports IDA7.4 and Python3. For older versions, see :doc:`Support
Getting Started
===============

Install Sark from the command line::
Install Sark from the command line:

.. code:: bash
pip3 install -U git+https://github.com/tmr232/Sark.git#egg=Sark
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools>=40.6.0", "wheel"]
build-backend = "setuptools.build_meta"
2 changes: 0 additions & 2 deletions setup.cfg

This file was deleted.

2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -10,7 +10,7 @@ def read(*paths):

setup(
name='sark',
version='2.0',
version='7.4.0',
packages=find_packages(exclude=['media', 'plugins']),
install_requires=['networkx', 'wrapt'],
url='https://github.com/tmr232/Sark',
Expand Down

0 comments on commit 2864c99

Please sign in to comment.