""" Minimal setup to allow pip install -e . (mostly for direct invocation of pytest with python -m pytest) """ from setuptools import find_packages, setup setup( name='portfolio-webapp', packages=find_packages(), description='', version='1.0.0', url='http://github.com/lwaguespack/cs-portfolio/portfolio-webapp', author='Lorenzo Waguespack', author_email='lorenzowaguespack@gmail.com', install_requires=[], extras_require={'tests': ['pytest']} )