Skip to content

Latest commit

 

History

History
37 lines (22 loc) · 1009 Bytes

README.md

File metadata and controls

37 lines (22 loc) · 1009 Bytes

OpenHuman.ai - Relastic virtual human assistant

Homepage: http://OpenHuman.ai/

Github: https://github.com/OpenHuman-ai/python-openhuman

Orgs: https://github.com/OpenHuman-ai

Installation Steps

  1. Create a setup.py file for your package, which includes information about your package such as its name, version, author, and dependencies.

  2. Create a source distribution and a wheel distribution of your package by running the following commands in your terminal:

python3 setup.py sdist bdist_wheel
  1. Create an account on PyPI if you haven't already done so. You can create an account by going to https://pypi.org/account/register/ and filling out the form.

  2. Install the twine package, which is used to upload your package to PyPI:

pip install twine
  1. Upload your package to PyPI using twine:

Remove old version before upload new

rm dist/*
twine upload dist/*
  1. Your package is now published on PyPI! Users can install it using pip install mypackage.