Skip to content

Commit

Permalink
Updated setup file
Browse files Browse the repository at this point in the history
  • Loading branch information
itsderek23 committed May 8, 2020
1 parent 0effccc commit 0782fa7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion whisk/template/{{ cookiecutter.repo_name }}/setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from setuptools import find_packages, setup


def list_reqs(fname='requirements.txt'):
"""
Adds the packages listed in `fname` as package requirements.
Expand All @@ -17,6 +16,9 @@ def list_reqs(fname='requirements.txt'):
package_dir={'': 'src'},
packages=find_packages(where='src'),
version='0.1.0',
include_package_data=True,
# TODO - show how to include dependencies with install_requires
# install_requires=list_reqs(),
entry_points={
'console_scripts': [
'{{cookiecutter.project_name}}={{cookiecutter.project_name}}.cli.main:cli',
Expand Down

0 comments on commit 0782fa7

Please sign in to comment.