Skip to content

Commit f925c3c

Browse files
committed
Merge branch 'hotfix/v0.0.13' into develop
2 parents 9ae2765 + cf2a9ac commit f925c3c

6 files changed

Lines changed: 208 additions & 208 deletions

File tree

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -45,22 +45,22 @@ from mifiel import Document, Client
4545
client = Client(app_id='APP_ID', secret_key='APP_SECRET')
4646

4747
signatories = [
48-
{
49-
'name': 'Signer 1',
50-
'email': 'signer1@email.com',
51-
'tax_id': 'AAA010101AAA'
48+
{
49+
'name': 'Signer 1',
50+
'email': 'signer1@email.com',
51+
'tax_id': 'AAA010101AAA'
5252
},
53-
{
54-
'name': 'Signer 2',
55-
'email':
56-
'signer2@email.com',
53+
{
54+
'name': 'Signer 2',
55+
'email':
56+
'signer2@email.com',
5757
'tax_id': 'AAA010102AAA'
5858
}
5959
]
6060
# Providde the SHA256 hash of the file you want to sign.
6161
doc = Document.create(client, signatories, dhash='some-sha256-hash')
6262
# Or just send the file and we'll take care of everything.
63-
# We will store the file for you.
63+
# We will store the file for you.
6464
doc = Document.create(client, signatories, file='test/fixtures/example.pdf')
6565

6666
doc.id # -> '7500e528-ac6f-4ad3-9afd-74487c11576a'
@@ -86,13 +86,15 @@ doc.save_xml('path/to/save/xml.xml')
8686

8787
### Install dependencies
8888

89+
This project uses [poetry](https://python-poetry.org/) which you can install [here](https://python-poetry.org/docs/#installation), the just run `install` command:
90+
8991
```bash
90-
pip install -r requirements.txt
92+
poetry install
9193
```
9294

9395
## Test
9496

95-
Just clone the repo, install dependencies as you would in development and run `nose2` or `python setup.py test`
97+
Just clone the repo, install dependencies as you would in development and run `nose2` or `poetry run nose2`
9698

9799
## Contributing
98100

@@ -104,9 +106,7 @@ Just clone the repo, install dependencies as you would in development and run `n
104106

105107
[coveralls-image]: https://coveralls.io/repos/github/Mifiel/python-api-client/badge.svg?branch=master
106108
[coveralls-url]: https://coveralls.io/github/Mifiel/python-api-client?branch=master
107-
108109
[travis-image]: https://travis-ci.org/Mifiel/python-api-client.svg?branch=master
109110
[travis-url]: https://travis-ci.org/Mifiel/python-api-client
110-
111111
[pypi-image]: https://badge.fury.io/py/mifiel.svg
112112
[pypi-url]: https://badge.fury.io/py/mifiel

0 commit comments

Comments
 (0)