Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 718 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 718 Bytes

General

Setting up:

  • Create an environment to a specific python version: virtualenv causalityEnv3.10 -p python3.10
  • Activate the created environment: .\causalityEnv3.10\Scripts\activate
  • Get the package list: python -m pip freeze > requirements3.10.txt
  • Install the package list: python -m pip install -r requirements3.10.txt
  • Deactivate the environment: deactivate

Packaging

  • Create package tutorial
    • Build: py -m build
  • Test to upload test_pypi
    • Upload: py -m twine upload --repository testpypi dist/*