Skip to content

Commit

Permalink
add install_requires in setup.py (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
yumiguan authored Nov 13, 2020
1 parent c7fd434 commit b3a8f78
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: "3.6"
python-version: "3.7"
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
Expand Down
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
lyrebird
facebook-wda
-e .[dev]
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,12 @@
install_requires=[
'lyrebird',
'facebook-wda==0.8.1'
]
],
extras_require={
'dev': [
"autopep8",
"pylint",
"pytest"
]
}
)

0 comments on commit b3a8f78

Please sign in to comment.