xxxxxxxxxx
- directory of python scripts
- each script is a module. Modules contain functions, methods, new python types (or objects) etc
- eg: numpy, matplotlib etc
- install packages with command: `pip install package_name`
- import package: `import package_name`
xxxxxxxxxx
A package is basically a directory with Python files and a file with the name __init__.py
xxxxxxxxxx
1. create files:
Nameofmodule(folder) setup.py README.txt LICINSE.txt MANIFEST.in
__init__.py(in folder)
2. pip install setuptools wheel
3. py setup.py sdist bdist_wheel or python3 setup.py sdist bdist_wheel
4. twine upload dist/*