Set setup.py on your root dir
import setuptools
setuptools.setup(
name="some-app",
version="0.1.0",
author="some name",
author_email="test@gmail.com",
description="test app",
long_description_content_type="text/markdown",
url="<https://github.com/{REPOSITORY_OWNER}/{REPOSITORY_NAME}>",
packages=setuptools.find_packages(where=".", exclude=('tests', '*.tests')),
python_requires=">=3.5",
install_requires=[
# sample
# 'pytest==6.2.5',
]
)