diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7549015..207fc4f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -71,6 +71,6 @@ make html ```bash -python setup.py sdist bdist_wheel +python setup.py sdist bdist python -m twine upload dist/* ``` \ No newline at end of file diff --git a/README.md b/README.md index e72848a..3f4c0f5 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 diff --git a/dqpu/__init__.py b/dqpu/__init__.py index b2b11f7..19b69a6 100644 --- a/dqpu/__init__.py +++ b/dqpu/__init__.py @@ -13,7 +13,4 @@ # limitations under the License. -__version__ = "0.1" - - -# from .backends import QiskitDQPU +__version__ = "0.2.1" diff --git a/dqpu/sim_trap_test_main.py b/other/sim_trap_test_main.py similarity index 100% rename from dqpu/sim_trap_test_main.py rename to other/sim_trap_test_main.py