Skip to content

Commit

Permalink
release and minors
Browse files Browse the repository at this point in the history
  • Loading branch information
dakk committed May 19, 2024
1 parent f0a8661 commit 9ef6f94
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,6 @@ make html


```bash
python setup.py sdist bdist_wheel
python setup.py sdist bdist
python -m twine upload dist/*
```
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,15 @@ A web interface showing the smart contract status is available here: [https://da

## Installation

```python setup.py install```
```pip install dqpu```

Or install the latest development version:

```bash
git clone https://github.com/dakk/dqpu
cd dqpu
python setup.py install
```

Install IPFS:
- https://docs.ipfs.tech/install/command-line/#install-official-binary-distributions
Expand Down Expand Up @@ -86,6 +94,7 @@ print(counts)
### Low-level example

```python
import time
from dqpu.blockchain import NearBlockchain, IPFSGateway
from dqpu.backends.base import submit_job, job_status, job_result

Expand Down
5 changes: 1 addition & 4 deletions dqpu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,4 @@
# limitations under the License.


__version__ = "0.1"


# from .backends import QiskitDQPU
__version__ = "0.2.1"
File renamed without changes.

0 comments on commit 9ef6f94

Please sign in to comment.