Skip to content

Commit

Permalink
Install setuptools with pipenv
Browse files Browse the repository at this point in the history
  • Loading branch information
kirkedev committed Mar 9, 2020
1 parent 0f14d28 commit dd0cad7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ jobs:
- name: Install dependencies
run: |
pip install --upgrade pip
pip install setuptools twine
pip install pipenv
pipenv install --dev
- name: Build package
run: bin/build
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
author='Andrew Kirkegaard',
author_email='andrew.kirkegaard@gmail.com',
url='https://github.com/gumballhead/mpr',
packages=find_packages(exclude=["test.*", "test"]),
packages=find_packages(exclude=['test.*', 'test']),
scripts=['bin/report'],
entry_points={
'console_scripts': [
Expand Down

0 comments on commit dd0cad7

Please sign in to comment.