Deprecated
#Crypto
#Install package with pip
1pip install arkecosystem-crypto
#Development
- Fork the package .
- Clone your forked repository.
1git clone https://github.com/<githubusername>/python-crypto
- Next, move into the cloned directory.
1cd python-crypto
- The next step would be to create something like a virtual environment and install the dependencies of this package inside it.
- Create and enter the virtual environment
1# With virtualenv (on Unix and OSx) 2mkdir my-amazing-ark-project 3cd my-amazing-ark-project 4virtualenv virtualEnvName 5source venv/bin/activate 6 7# With virtualenv (on Windows) 8mkdir my-amazing-ark-project 9cd my-amazing-ark-project10virtualenv virtualEnvName11.\venv\Scripts\activate.bat
- Once inside the virtualenv, you can proceed to install the dependencies. These are listed inside the setup.py file.
1pip install flake8 flake8-import-order flake8-print flake8-quotes pytest pytest-cov
- Dependencies are now installed, you can now run the tests to see if everything is running as it should.
1pytest
Last updated 3 years ago
Edit Page