
# How to Upload to PyPi :

1. creating a folder: any name
2. creating a sub folder : vector
3. creating a sub folder : vixtor
4. create __init__.py inside 2nd folder
5. create setup.py inside 1st folder
6. pip install setuptools
7. import setuptools
8. define setup configuration inside setup.py file
9. include manifest.in
10. include readme.txt
11. include license.txt

13. run 'python setup.py sdist' cmd in terminal
14. install twine package :'pip install twine --upgrade'
15. twine upload dist/*

    or, python3 -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*
16. Enter your PyPi username and then password.
