Skip to content
This repository has been archived by the owner on Nov 20, 2024. It is now read-only.

Commit

Permalink
Add requirements.txt and extend gitignore for venv
Browse files Browse the repository at this point in the history
  • Loading branch information
m4reko committed Jul 4, 2022
1 parent 4bc3b1c commit 5d0ab75
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 9 deletions.
18 changes: 15 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

# Created by https://www.toptal.com/developers/gitignore/api/windows,macos,linux,python,visualstudiocode
# Edit at https://www.toptal.com/developers/gitignore?templates=windows,macos,linux,python,visualstudiocode
# Created by https://www.toptal.com/developers/gitignore/api/windows,macos,linux,python,visualstudiocode,venv
# Edit at https://www.toptal.com/developers/gitignore?templates=windows,macos,linux,python,visualstudiocode,venv

### Linux ###
*~
Expand Down Expand Up @@ -212,6 +212,18 @@ cython_debug/
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/

### venv ###
# Virtualenv
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
[Bb]in
[Ii]nclude
[Ll]ib
[Ll]ib64
[Ll]ocal
[Ss]cripts
pyvenv.cfg
pip-selfcheck.json

### VisualStudioCode ###
.vscode/*
!.vscode/settings.json
Expand Down Expand Up @@ -263,4 +275,4 @@ $RECYCLE.BIN/
# Windows shortcuts
*.lnk

# End of https://www.toptal.com/developers/gitignore/api/windows,macos,linux,python,visualstudiocode
# End of https://www.toptal.com/developers/gitignore/api/windows,macos,linux,python,visualstudiocode,venv
8 changes: 8 additions & 0 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
-r requirements.txt
pre-commit
python-dotenv
pytest
pytest-dotenv
pytest-asyncio
black
isort
8 changes: 2 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,2 @@
websockets
pre-commit
python-dotenv
pytest
pytest-dotenv
pytest-asyncio
websockets ~= 10.3
zeroconf ~= 0.38.7

0 comments on commit 5d0ab75

Please sign in to comment.