Skip to content

Commit

Permalink
Bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
cydanil committed Apr 3, 2020
1 parent cadf87d commit 3df4ba4
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,9 @@ without the need for a complete DaNCE suite.

## Installing

This package requires Python 3.7+.
Clone and download this repository, and install it with `pip`:
This package requires Python 3.7+, and is available on pypi:

pip install .
pip install icepap-ipassign

## Usage

Expand Down Expand Up @@ -231,11 +230,14 @@ This message would be represented as:

Error codes are defined in `ipassign.acknowledgements`.

## Testing
## Testing and Development

Clone and download this repository, and install it with `pip`:

pip install -e .

Testing this library done with `pytest`:

pip install .
pytest -vv

For development, a mock IcePAP server can be found in `utils/mock_icepap`.
Expand Down
10 changes: 7 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
from distutils.core import setup
from setuptools import setup

with open('README.md', 'r') as fin:
long_description = fin.read()

setup(
name='icepap-ipassign',
version='0.0.0',
version='2.0.0',
author='Cyril Danilevski',
author_email='[email protected]',
description='',
description='A tool to configure IcePAP network settings',
long_description=long_description,
url='https://github.com/cydanil/icepap-ipassign',
packages=['ipassign'],
install_requires=['PyQt5>=5.12.0'],
Expand Down

0 comments on commit 3df4ba4

Please sign in to comment.