# Directory setup
ROOT_DIR = /users/jessedesimone/Projects    #Contains SUB_DIR
SUB_DIR = $ROOT_DIR/tutorials       #Contains MAIN_DIR
MAIN_DIR = $SUB_DIR/pypi_hellodemo     #Contains base files
PACK_DIR =  $MAIN_DIR/pypi_hellodemo      #Contains package files

# Create base files in MAIN_DIR
README.md
-provide basic description of the package

CHANGELOG.txt
-provide changelog to monitor release notes

MANIFEST.in
-filetype extensions to include in the package

LICENSE
-many available options to choose
-see classifiers list

setup.py


#Uploading package to PyPi
-Create account on PyPi 
-install twine
> pip3 install setuptools twine
-navigate to $MAIN_DIR
-create distributable version of python library
> python3 setup.py sdist








