Created a package with the same setup.py with the command python setup.py sdist
from setuptools import setup, find_packages
setup(name='example'
version='0.1',
url=",
license='MIT',
author='Gigi Sayfan',
author_email='the.gigi@gmail.com',
description='Add static script_dir() method to Path',
packages=find_packages(),
lo...