add venv dir

This commit is contained in:
iuvbio 2021-07-01 20:09:38 +03:00
parent 07440e0f90
commit cdc4930eb2
1 changed files with 10 additions and 7 deletions

17
.gitignore vendored
View File

@ -2,22 +2,25 @@
*.pyc *.pyc
# Setuptools distribution folder. # Setuptools distribution folder.
/dist/ dist/
# Python egg metadata, regenerated from source files by setuptools. # Python egg metadata, regenerated from source files by setuptools.
/*.egg-info *.egg-info
# Build folder. # Build folder.
/build/ build/
# PyCharm idea folder. # PyCharm idea folder.
/.idea/ .idea/
# PyTest folder # PyTest folder
/.pytest_cache/ .pytest_cache/
# Dev .eggs folder # Dev .eggs folder
/.eggs/ .eggs/
# Pycache folders # Pycache folders
*__pycache__/ __pycache__/
# Virtual env dir
venv/